fix #I9004K [l10n_cn_standard_latest]让其正常

This commit is contained in:
Chill
2024-02-26 18:22:50 +08:00
parent dd04217c82
commit a9ef20c2d8
18 changed files with 323 additions and 911 deletions

View File

@@ -24,7 +24,7 @@ def pre_init_hook(cr):
pass
def post_init_hook(cr, registry):
def post_init_hook(env):
"""
数据初始化,只在安装后执行,更新时不执行
此处不执行,只是记录,该数据已处理完成
@@ -32,8 +32,8 @@ def post_init_hook(cr, registry):
# cr.execute("UPDATE account_account_template set group_id = "
# "(select id from account_group where account_group.code_prefix_start=trim(substring(account_account_template.code from 1 for 1)) limit 1);")
cr.execute("UPDATE account_account set group_id = "
env.cr.execute("UPDATE account_account set group_id = "
"(select id from account_group where account_group.code_prefix_start=trim(substring(account_account.code from 1 for 1)) limit 1);")
cr.commit()
env.cr.commit()
pass