mirror of
https://github.com/bringout/oca-ocb-l10n_europe.git
synced 2026-04-26 20:02:00 +02:00
11 lines
306 B
Python
11 lines
306 B
Python
def migrate(cr, version):
|
|
|
|
cr.execute("""
|
|
UPDATE account_tax
|
|
SET l10n_it_exempt_reason = 'N2.1'
|
|
WHERE l10n_it_exempt_reason = 'N3.2'
|
|
AND sequence = 185
|
|
AND amount = 0.0
|
|
AND type_tax_use = 'sale'
|
|
AND tax_scope = 'service'
|
|
""")
|