We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9825802 commit 289da99Copy full SHA for 289da99
addons/l10n_fr_account/models/account_move.py
@@ -23,7 +23,8 @@ def _compute_l10n_fr_is_company_french(self):
23
24
@api.depends('country_code', 'move_type')
25
def _compute_show_delivery_date(self):
26
+ # EXTEND 'account'
27
super()._compute_show_delivery_date()
28
for move in self:
- if move.country_code == 'FR':
29
+ if move.l10n_fr_is_company_french:
30
move.show_delivery_date = move.is_sale_document()
0 commit comments