Hi,all:
I'm trying to create different user in a module,as we know,we usually have "User"and "Manager" in a module,and in security.xml they have code as:
<record id="group_project_user" model="res.groups">
<field name="name">User</field>
<field name="implied_ids" eval="[(4, ref('base.group_user'))]"/>
<field name="category_id" ref="base.module_category_project_management"/>
</record>
<record id="group_project_manager" model="res.groups">
<field name="name">Manager</field>
<field name="category_id" ref="base.module_category_project_management"/>
<field name="implied_ids" eval="[(4, ref('group_project_user'))]"/>
<field name="users" eval="[(4, ref('base.user_root')), (4, ref('base.user_admin'))]"/>
</record>
But now I'm supposed to add more kinds of users in the module,besides "user" and "manager",the module also needs "Leader" and "Chairman",so what should I do with the code of security.xml?
Thanks!