場景描述:
開發過程中,有時候會遇到,模組安裝的時候,一直卡著,走不過去;或者安裝報錯,導致進入了系統!
這個時候,怎麼處理呢?
state
uninstallable 不可安裝
uninstalled 未安裝
安裝中to upgrade 公升級中
installed 已安裝
例如:取消公升級中的模組。注意這裡只是舉例,查詢了「所有」的記錄,可以指定特定的某個模組。
選擇所有在公升級的模型select *from ir_module_module
where state = '
to upgrade
' 檢視某個模組的安裝狀態:
select name,state from ir_module_module where name='模組名';
將狀態為』to upgrade』改為』installed』
update ir_module_module
set state = '
installed
'where state = '
to upgrade
'
odoo開發筆記 日期操作
日期格式化字串 日期格式化字串 date format y m d 日期時間格式字串 datetime format y m d h m s 日期時間格式字串 包含毫秒 datetime format y m d h m s.f odoo中賦值當前日期 odoo物件中欄位賦值為當前日期 字串 fie...
odoo11開發筆記 模組開發
自定義模組顯示需要 manifest.py n.貨單 vi.顯示 是 odoo 的乙個模組宣告。it contains a python dictionary with information about the module,the modules it depends on,and the da...
odoo8 開發筆記 日期操作
日期格式化字串 date format y m d 日期時間格式字串 datetime format y m d h m s 日期時間格式字串 包含毫秒 datetime format y m d h m s.f openerp物件中欄位賦值為當前日期 字串 fields.date.context ...