Skip to content

Commit 09358c0

Browse files
committed
[FIX] account_edi_ubl_cii: missing parenthesis in invoice_edi_format
Follow-up to commit 860c097 . There we improved the eInvoice format labels for clarity. But 2 label were formatted differently than the others. This commit fixes that. task-4737164 Part-of: odoo#233694 Signed-off-by: Claire Bretton (clbr) <[email protected]> Signed-off-by: Sven Führ (svfu) <[email protected]>
1 parent 84def1c commit 09358c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

addons/account_edi_ubl_cii/models/res_partner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class ResPartner(models.Model):
2626
('ubl_bis3', "EU Standard (Peppol Bis 3.0)"),
2727
('xrechnung', "Germany (XRechnung)"),
2828
('nlcius', "Netherlands (NLCIUS)"),
29-
('ubl_a_nz', "Australia BIS Billing 3.0 A-NZ"),
30-
('ubl_sg', "Singapore BIS Billing 3.0 SG"),
29+
('ubl_a_nz', "Australia (BIS Billing 3.0 A-NZ)"),
30+
('ubl_sg', "Singapore (BIS Billing 3.0 SG)"),
3131
],
3232
)
3333
is_ubl_format = fields.Boolean(compute='_compute_is_ubl_format')

0 commit comments

Comments
 (0)