升级模块报错
报错信息:
odoo.exceptions.ValidationError: 验证附近查看时出错:
<field string="Record Rules" name="rules_count" widget="statinfo"/>
</button>
<button name="237" class="oe_stat_button" icon="fa-users" attrs="{'invisible': [('employee_count', '=', 0)]}" context="{'active_test': False}" type="action">
<field name="employee_count" widget="statinfo" string="Employee(s)"/>
模型"res.users"中不存在字段"pm_user_id"
View error context:
{'file': None, 'line': 38, 'name': 'res.users.groups', 'view': ir.ui.view(168,), 'view.model': 'res.users', 'view.parent': ir.ui.view(164,),
'xmlid': 'module_category_bpm'}
谁知道简书如何贴代码能够舒服一些,请评论区教我一下,现在贴个报错信息,体验太差了。
原因:
1、扩展res.users模型,能不扩展就不扩展。
2、我通过代码为res.users增加了字段。 然后通过界面,将该字段加上去了。这样就导致加字段的模块的上层模块(被依赖模块)会升级报错。从界面上把字段删掉就好了。
在界面上,你所看见的视图是多个xml文件”合并“的结果,所以在弹出窗口打开的xml更改或者继承视图中更改,都有可能出现问题。