mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
fix #I9004K [l10n_cn_standard_latest]让其正常
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user