콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
15611 화면

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.

아바타
취소

Did you solve this problem?

베스트 답변

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.

아바타
취소
베스트 답변

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.)

아바타
취소
관련 게시물 답글 화면 활동
0
10월 22
2944
4
12월 21
23991
1
3월 15
5232
0
6월 25
2463
1
4월 22
5276