fix 会计科目

This commit is contained in:
Ivan Office
2024-11-13 22:57:40 +08:00
parent 55c8406cb6
commit 253f076143
5 changed files with 21 additions and 15 deletions

View File

@@ -27,13 +27,24 @@ def pre_init_hook(env):
def post_init_hook(env):
"""
数据初始化,只在安装后执行,更新时不执行
此处不执行,只是记录,该数据已处理完成
注意 account.account 中 code 处理已不同,主要用 json 存在 code_store 中,故要不可使用 sql
同时 group_id 已为 compute 字段,无需设置
"""
# 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);")
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);")
env.cr.commit()
# for g in [
# env.ref('l10n_cn_standard_latest.account_group_1'),
# env.ref('l10n_cn_standard_latest.account_group_2'),
# env.ref('l10n_cn_standard_latest.account_group_3'),
# env.ref('l10n_cn_standard_latest.account_group_4'),
# env.ref('l10n_cn_standard_latest.account_group_5'),
# env.ref('l10n_cn_standard_latest.account_group_6'),
# ]:
# res = env['account.account'].search([('code', 'like', g.code_prefix_start + '%')])
# if res:
# res.write({'group_id': g.id})
# env.cr.commit()
pass