This question has been flagged
2 Replies
14005 Views

i like to hide a menu for one group specifity, but when i apply delete this remove all menu for all users, but i want to hide for one groups. explain: i inherit a groups to user from warehouse, but this specifity users i dont want to show menu stock out.

for example i create a new groups users. i define in MY_module_folder/security/my_security.xml

<?xml version="1.0" encoding="utf-8"?>
<openerp>
 <data noupdate="0">
    <record id="group_stock_manager_moseltex" model="res.groups">
        <field name="name">Almacen_mosel Encargado</field>
       <field name="implied_ids" eval="[(4, ref('stock.group_stock_manager'))]"/>
    </record>
 </data>
</openerp>

but i want to hide a menu stock out (this code put inside the my_security.xml).

 `<record model="ir.ui.menu" id="menu_action_picking_tree">
 <field name="groups_id"  eval="[ref('group_stock_manager_moseltex')]" />`

but this is dont work.

Avatar
Discard

Did you solve this problem?

Best Answer

Hello,

Try this,

<record model="ir.ui.menu" id="stock.menu_action_picking_tree">

<field name="groups_id" eval="[(4, ref('group_stock_manager_moseltex'))]"/>

</record>

you have to give reference of module associated with that menu. and menu_action_picking_tree belongs to stock module in odoo 7.0 Here 4 will add group to existing list of groups on that menu. If you want to replace existing groups on that menu than use 6 instead. example- (6,0,[ref('group_stock_manager_moseltex')].

There are six numeric commands:

  • 0 - creates a new object and adds it to the Many2many relation
  • 1 - updates an object that already exists on the relation
  • 2 - deletes an object that already exists on the relation
  • 3 - removes an existing object from the relation, without deleting it
  • 4 - adds an existing object to the relation
  • 5 - removes all objects from the relation, without deleting them
  • 6 - replaces pervious objects existing on the relation with a new set of objects

Hope this will help you.

Avatar
Discard
Best Answer

The access to the menu item is granted, not revoked. You need to create a group of users that have access to the menu item. To do this, you should modify the meny item's attribute groups and add the list of groups that have access Here is a sample:

        <menuitem name="Registrations"
            id="menu_action_registration" parent="base.menu_event_main"
            action="action_registration" groups="event.group_event_manager,event.group_event_user"/>

Same logic works for the elements in the odoo view (field, page, div, etc.)

Avatar
Discard