Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
6542 Vues

I am trying to inherit one group's access rights to another group in odoo using python code.

Example :-

i have a hr_manager group and restrict_user group.

i want to inherit hr_manager group to restrict_user group during creation of a new user.

Please suggest..

Avatar
Ignorer
Meilleure réponse

If you have a group A, then you can create/write a group B that inherit the access rights of A. 

self.env['res.groups'].create({'name': 'B', 'implied_ids': [(6, 0, A.ids)]})

implied_ids is a many2many field that does exactly what you need

Avatar
Ignorer
Publications associées Réponses Vues Activité
7
juin 24
24752
0
sept. 20
2260
1
juin 20
11621
0
août 19
3788
0
juil. 23
2