I want to remove Customer menu from the Sales Module. So What I have done is that I created a Group named hidden group & am assigning it to Customer menu to hide it.. So My code is like this:-
Here I want to find the parent value and id value of the menu.. So If I give it here only I can hide it. So how can I find it from Odoo?
<record model="res.groups" id="group_invisible"> <field name="name">Hidden items</field> </record> <menuitem id="module_name.menuitem_id" parent="base.menu_sales" sequence="1" groups="group_invisible"/>