Initial commit: L10N_Asia Pacific packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:52 +02:00
commit 54c86b612c
828 changed files with 58224 additions and 0 deletions

View file

@ -0,0 +1,10 @@
def migrate(cr, version):
cr.execute("""
UPDATE account_report_expression e
SET label = 'balance'
FROM ir_model_data d
WHERE e.id = d.res_id
AND d.module = 'l10n_nz'
AND d.name = 'tax_report_box13_formula'
AND e.label = '_upg_1.2balance'
""")

View file

@ -0,0 +1,10 @@
def migrate(cr, version):
cr.execute("""
UPDATE account_report_expression e
SET label = '_upg_1.2balance'
FROM ir_model_data d
WHERE e.id = d.res_id
AND d.module = 'l10n_nz'
AND d.name = 'tax_report_box13_formula'
AND e.label = 'balance'
""")