Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
3 Odpowiedzi
2186 Widoki

by default two groups is showed odoo I want to add an third extra group 

Awatar
Odrzuć
Najlepsza odpowiedź

Hi, 

In your security file in your module you can create another group as below,

<record id="group_your_group_name" model="res.groups">

    <field name="name">Custom Group</field>

    <field name="users" eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"/>

</record>

And then you can add this group to your user role in Roles.

Awatar
Odrzuć
Autor Najlepsza odpowiedź

its working thanks 

Awatar
Odrzuć

Happy to help!

Najlepsza odpowiedź

You can add group content filed using xml 

<xpath expr="//field[@name='content']" position="attributes">
    <attribute name="groups">base.group_no_one</attribute>
</xpath>
Awatar
Odrzuć