如何在res.users odoo中更改自动填充组名称

时间:2019-01-30 19:12:07

标签: odoo odoo-9

我在自定义模块中获得了新的安全性,

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

该字段显示如下 enter image description here 通过显示我自动创建的组名而无需先进行搜索,我可以删除groups_id中的字段视图和更改表单吗?

1 个答案:

答案 0 :(得分:0)

您可以使用many2many_checkboxes列出所有组,并且可以选择而不进行任何搜索。

<field name="groups_id" widget="many2many_checkboxes" />