如何从后端安装overerp模块


'installable': True,
'auto_install': True,
'application': True,
'active':True,

我将上述内容添加到我的 openerp .py中,并尝试将模块添加到现有模块中,在此之后,我尝试更新所有仍然安装模块的模块。

我尝试运行查询:

 update ir_module_module set state='to install' where name = mymodule;

改变状态仍然没有安装模块

在openerp workspace:

./openerp-server --addons-path=../addons/... -i <your module name> -d <your database name>

最新更新