update misc

This commit is contained in:
Ivan Office
2024-02-29 16:34:15 +08:00
parent 620059d05c
commit 2c58bdfef2
3 changed files with 16 additions and 18 deletions

View File

@@ -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):
"""
数据初始化,卸载时执行
"""

View File

@@ -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("")

View File

@@ -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