This question has been flagged
1 Reply
2774 Views

Hi,

I want to use this below group to restrict some functionality

<record id="account.group_account_manager" model="res.groups">
<field name="name">Advisor</field>
<field name="implied_ids" eval="[(3, ref('account.group_account_invoice')), (4, ref('account.group_account_user'))]"/>
</record>

but the problem is that in the id, it has the id of another group in account module, now how do i use this group?

Also can anyone tell me what is going in the below line

<field name="implied_ids" eval="[(3, ref('account.group_account_invoice')), (4, ref('account.group_account_user'))]"/>
Avatar
Discard
Best Answer

implied_ids mean inherit the other group's functionality just like python inheritance.

Check more details

Avatar
Discard
Author

Hi Sudhir Arya,

Thanks for the answer, so in the above case the advisor group is inheriting functionality from account.group_account_manager now how to inherit this advisor group because the id is not unique i.e., the id of advisor is the id of manager group in account module?

Author

sorry, i don't want to inherit the advisor group, i want to use it to limit some functionality to the users. How to use it is the question now as the id is not unique.