Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implied_ids and users in groups in odoo 8

What is the difference between these two in odoo security file.

<field name="users" eval="[(4, ref('base.user_root'))]"/>
<field name="implied_ids" eval="[(4, ref('base.group_hr_manager'))]"/>

Please anyone explain this!!

like image 985
KbiR Avatar asked Feb 06 '23 00:02

KbiR


1 Answers

  1. users are the group members which will get all the group privileges. The model behind is res.users. Example: Users in the group sales manager will see the sales configuration menu.

  2. implied_ids are inherited group privileges. A group which inherits other groups, will get all the other groups rights in top of their own. The model behind is res.groups. Example: The group sales manager will inherit all rights from group see all leads which also implies the rights from group see own leads.

like image 192
CZoellner Avatar answered Mar 15 '23 23:03

CZoellner