Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
3 ตอบกลับ
2214 มุมมอง

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

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

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.

อวตาร
ละทิ้ง
ผู้เขียน คำตอบที่ดีที่สุด

its working thanks 

อวตาร
ละทิ้ง

Happy to help!

คำตอบที่ดีที่สุด

You can add group content filed using xml 

<xpath expr="//field[@name='content']" position="attributes">
    <attribute name="groups">base.group_no_one</attribute>
</xpath>
อวตาร
ละทิ้ง