diff --git a/app_base_chinese/hooks.py b/app_base_chinese/hooks.py index 7c2bdf21..6a38a7e7 100644 --- a/app_base_chinese/hooks.py +++ b/app_base_chinese/hooks.py @@ -18,7 +18,7 @@ from odoo import api, SUPERUSER_ID, _ -def pre_init_hook(cr): +def pre_init_hook(env): """ 数据初始化,只在安装时执行,更新时不执行 """ @@ -26,25 +26,24 @@ def pre_init_hook(cr): pass -def post_init_hook(cr, registry): +def post_init_hook(env): """ 数据初始化,只在安装后执行,更新时不执行 """ try: - env = api.Environment(cr, SUPERUSER_ID, {'active_test': False}) - ids = env['product.category'].sudo().with_context(lang='zh_CN').search([ + ids = env['product.category'].sudo().with_context(lang='zh_CN', active_test=False).search([ ('parent_id', '!=', False) ], order='parent_path') for rec in ids: rec._compute_complete_name() - ids = env['stock.location'].sudo().with_context(lang='zh_CN').search([ + ids = env['stock.location'].sudo().with_context(lang='zh_CN', active_test=False).search([ ('location_id', '!=', False), ('usage', '!=', 'views'), ], order='parent_path') for rec in ids: rec._compute_complete_name() # 超级用户改时区为中国 - ids = env['res.users'].sudo().with_context(lang='zh_CN').browse([1, 2]) + ids = env['res.users'].sudo().with_context(lang='zh_CN', active_test=False).browse([1, 2]) ids.write({'tz': "Etc/GMT-8"}) # 公司价格改人民币 ids = env['res.company'].sudo().search([], limit=1) @@ -57,7 +56,7 @@ def post_init_hook(cr, registry): except Exception as e: raise Warning(e) -def uninstall_hook(cr, registry): +def uninstall_hook(env): """ 数据初始化,卸载时执行 """ diff --git a/app_common/hooks.py b/app_common/hooks.py index 40a5ccf5..bd41b59e 100644 --- a/app_common/hooks.py +++ b/app_common/hooks.py @@ -18,15 +18,15 @@ from odoo import api, SUPERUSER_ID, _ -def pre_init_hook(cr): +def pre_init_hook(env): pass # cr.execute("") -def post_init_hook(cr, registry): +def post_init_hook(env): pass # cr.execute("") -def uninstall_hook(cr, registry): +def uninstall_hook(env): pass # cr.execute("") diff --git a/app_odoo_customize/hooks.py b/app_odoo_customize/hooks.py index ed8accda..ed66bfc5 100644 --- a/app_odoo_customize/hooks.py +++ b/app_odoo_customize/hooks.py @@ -18,32 +18,31 @@ from odoo import api, SUPERUSER_ID, _ -def pre_init_hook(cr): +def pre_init_hook(env): try: # 更新企业版指向 sql = "UPDATE ir_module_module SET website = '%s' WHERE license like '%s' and website <> ''" % ('https://www.odooai.cn', 'OEEL%') - cr.execute(sql) - cr.commit() + env.cr.execute(sql) + env.cr.commit() except Exception as e: pass -def post_init_hook(cr): +def post_init_hook(env): # a = check_module_installed(cr, ['app_web_superbar','aaaaa']) pass # cr.execute("") -def uninstall_hook(cr, registry): +def uninstall_hook(env): """ 数据初始化,卸载时执行 """ pass -def check_module_installed(cr, modules): +def check_module_installed(env, modules): # modules 输入参数是个 list,如 ['base', 'sale'] - env = api.Environment(cr, SUPERUSER_ID, {}) installed = False m = env['ir.module.module'].sudo().search([('name', 'in', modules), ('state', 'in', ['installed', 'to install', 'to upgrade'])]) if len(m) == len(modules): installed = True - return len(m) + return installed