mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-25 17:32:05 +02:00
9 lines
278 B
Python
9 lines
278 B
Python
def migrate(cr, version):
|
|
# Set noupdate property of "account.tax.template" records to False
|
|
cr.execute(
|
|
"""UPDATE ir_model_data
|
|
SET noupdate=false
|
|
WHERE module='l10n_ca'
|
|
AND model='account.tax.template'
|
|
"""
|
|
)
|