mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-26 11:01:59 +02:00
10 lines
322 B
Python
10 lines
322 B
Python
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'
|
|
""")
|