Skip to content

Commit 86fe297

Browse files
committed
[FIX] l10n_it_dichiarazione_intento: close state label
1 parent 44811ee commit 86fe297

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

l10n_it_dichiarazione_intento/models/dichiarazione_intento.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def _default_currency(self):
8484
'account.fiscal.position', string='Fiscal Position', required=True,
8585
domain=[('valid_for_dichiarazione_intento', '=', True)])
8686
state = fields.Selection(
87-
[('valid', 'Valid'), ('expired', 'Expired'), ('close', 'Close')],
87+
[('valid', 'Valid'), ('expired', 'Expired'), ('close', 'Closed')],
8888
compute='_compute_state', store=True)
8989
force_close = fields.Boolean()
9090
line_ids = fields.One2many('dichiarazione.intento.line',

l10n_it_dichiarazione_intento/views/dichiarazione_intento_view.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
<field name="date_start"/>
9999
<field name="date_end"/>
100100
<filter name="state_valid" string="Valid" domain="[('state','=','valid')]"/>
101-
<filter name="state_close" string="Close" domain="[('state','=','close')]"/>
101+
<filter name="state_close" string="Closed" domain="[('state','=','close')]"/>
102102
<filter string="Partner" name="partner_group" context="{'group_by':'partner_id'}"/>
103103
<filter string="State" name="state_group" context="{'group_by':'state'}"/>
104104
</search>

0 commit comments

Comments
 (0)