我在自定义模块中获得了新的安全性,
<record model="ir.module.category" id="module_create">
<field name="name">Module Role</field>
<field name="description">User access level for this module</field>
<field name="sequence">5</field>
</record>
<record id="group_merc" model="res.groups">
<field name="name">Merc Access</field>
<field name="category_id" ref="mymodule.module_create"/>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
</record>
并且我像这样使用 res.users 类制作另一个表单视图
<page name="access_rights" string="Access Rights">
<field name="groups_id" widget="many2many_tags" options='{"no_create": True, "no_open": True}'/>
</page>
答案 0 :(得分:0)
您可以使用many2many_checkboxes
列出所有组,并且可以选择而不进行任何搜索。
<field name="groups_id" widget="many2many_checkboxes" />