Hi,
I created a custom module in that I have create a new group. and what I want to do is I want to hide the quotation menu, and only the user belong to new group could see the quotation menu.
<record id="group_sale_show_quotation_menu" model="res.groups">
<field name="category_id" ref="base.module_category_sales_management"/>
<field name="name"> Show Quotation Menu</field>
</record>
and I want to show quotation menu only to this group of user. for that I code.
<record model='ir.ui.menu' id='sale.menu_sale_quotations'>
<field name="groups_id" eval="[(6,0,[ref('module_name.group_sale_show_quotation_menu')])]"/>
</record>
above is not working. user who is not belong to mentioned group still able to see quotation menu. am I missing something. Could anyone help me to achieve this.
Thanks in advance!
Hi,
did you add security for this group for the model
No, I didn't add any security for the group.