如何创建组并添加到复选框而不是 Odoo 10 中的选择?

How to create group and add to checkbox rather than selection in Odoo 10?

我尝试将安全组创建为复选框。但它只是作为一个选择出现。代码如下。

    <record model="ir.module.category" id="module_category_ga">
        <field name="name">GA Access Rights</field>
        <field name="sequence">205</field>
    </record>

    <record id="group_directors" model="res.groups">
        <field name="name">Directors</field>
        <field name="category_id" ref="module_category_ga"/>
    </record>

这是代码。

如果您想将模块类别用作复选框,请不要使用它。

    <record id="group_directors" model="res.groups">
        <field name="name">Directors</field>
    </record>