Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Apskaita
- Atsarga
- PoS
- Project
- MRP
This question has been flagged
2
Replies
12686
Rodiniai
Hi,
What is the issue you are facing with above code? You have created a user group, and created new menu's and this menu is assigned the first created group.
This is working fine right ? Upgrade module and in debug mode, navigate to Menu Items menu under Settings -> technical and open any of the above menu and see the groups is added or not.
Thanks
Here is full code please help
<record id="group_crm_lead_user_executive" model="res.groups">
<field name="name">CRM Lead User Executive</field>
<field name="category_id" ref="module_category_crm"/>
</record>
<!-- CRM Menu Item restricted to CRM Lead User Executive group -->
<record id="menu_crm_root" model="ir.ui.menu">
<field name="name">CRM</field>
<field name="sequence">1</field>
<field name="parent_id" ref="crm.crm_menu_root"/>
<field name="groups_id"
eval="[(6, 0, [ref('group_crm_lead_user_executive')])]"/>
</record>
<record id="crm_menu_sales" model="ir.ui.menu">
<field name="name">Sales</field>
<field name="sequence">2</field>
<field name="parent_id" ref="crm.crm_menu_root"/>
<field name="groups_id" eval="[(6, 0, [ref('group_crm_lead_user_executive')])]"/>
</record>
<record id="menu_crm_opportunities" model="ir.ui.menu">
<field name="name">My Pipeline</field>
<field name="sequence">3</field>
<field name="parent_id" ref="crm.crm_menu_root"/>
<field name="groups_id" eval="[(6, 0, [ref('group_crm_lead_user_executive')])]"/>
</record>
<!-- CRM Manager Group -->
<record id="group_crm_manager" model="res.groups">
<field name="name">CRM Manager</field>
<field name="category_id" ref="module_category_crm"/> <!-- Corrected category reference -->
<field name="implied_ids"
eval="[(4, ref('group_crm_lead_user_executive'))]"/> <!-- Corrected implied group reference -->
</record>
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
RegistracijaRelated Posts | Replies | Rodiniai | Veikla | |
---|---|---|---|---|
|
0
rugs. 24
|
959 | ||
|
2
birž. 22
|
3091 | ||
|
0
spal. 24
|
1038 | ||
|
2
rugs. 24
|
1218 | ||
|
5
rugp. 18
|
4477 |