This question has been flagged
4711 Views

how to Add a new access group in the user's access as the example in the picture



I tried to add but still I find in the Application group 

<record model="ir.module.category" id="module_security_app">
  <field name="name">Security For Department</field>
  <field name="description">User access level for department</field>
  <field name="sequence">1</field>
</record>
<record id="group_user_app" model="res.groups">
     <field name="name">User</field>
     <field name="implied_ids" eval="[(4, ref('hr.group_hr_user'))]"/>
     <field name="users" eval="[(4, ref('base.user_root'))]"/>
     <field name="category_id" ref="module_security_app"/>
    </record>
  <record id="group_manager_app" model="res.groups">
      <field name="name">Manager</field>
      <field name="implied_ids" eval="[(4, ref('group_user_app'))]"/>
      <field name="category_id" ref="module_security_app"/>
    </record>
Avatar
Discard

Groups and Access Rights in Odoo: https://goo.gl/4jAhtH

Hello, in question not clear. As your code says it has one category which has two groups. and it works as drop down like we have in sales group.

If you need two check boxes for two groups. Than remove the implied ids from manager group.

If still not achieving your requirement. please provide proper information what you want to achieve.