تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
3 الردود
5548 أدوات العرض

I tried below code....Its Not working


Need a help...

The second one is working for salesman group.But first one is not working #From @Axel Suggestion
<menuitem name="Quotations" id="sale.menu_sale_quotations" parent="base.menu_sales" groups="-base.group_sale_salesman"/>

<menuitem name="Sales Orders" id="sale.menu_sale_order" parent="base.menu_sales" groups="-base.group_sale_salesman"/>
WHY QUOTATIONS MENU IS NOT HIDING ,I CAN HIDE SALES ORDER MENU ....

الصورة الرمزية
إهمال
الكاتب أفضل إجابة

Found the solution,may be useful to others.......


This Will Hide Quotation Menu...


<record id="sale.menu_sale_quotations" model="ir.ui.menu">  
 <field name="groups_id" eval="[(3,ref('base.group_sale_salesman'))]"/>
</record>

This Will hide Sale order Menu...


<menuitem name="Sales Orders" id="sale.menu_sale_order" parent="base.menu_sales" groups="-base.group_sale_salesman"/>


الصورة الرمزية
إهمال
أفضل إجابة

Maybe you must take a look in groups and add a rule on quotation. I think quotation depends from other object so you need add rules on this object.



الصورة الرمزية
إهمال
الكاتب

No its not working......