Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
7983 Widoki

I'm trying to add a third group (in addition to User and Manager) to project app using xml.

<record id="project.group_project_accountant" model="res.groups">
             <field name="name">Accountant</field>
             <field name="category_id" ref="base.module_category_project_management"/>
             <field name="implied_ids" eval="[(4, ref('project.group_project_user'))]"/>
</record>

The group is greated just fine, but in the users group view (Settings->Users->Users->Access Rights->Applications) the selection field for project app is gone...

I have also addes access right for this group using ir.model.access.csv

access_project_project_accountant,project.project accountant,model_project_project,project.group_project_accountant,1,0,0,0

What am I missing / getting wrong?

Awatar
Odrzuć
Autor Najlepsza odpowiedź

Found the solution.

The group selection field for the project application in the user form view was gone, indeed. But instead there was a new Project group with all groups as boolean fields.

In fact, if you want your groups to be a selection field, you have to make the group inheritance strictly hierachical.

Example: Project/User as base group, Project/Accountant inherits from Project/User, Project/Manager inherits from Project/Accountant (using the implied_ids field).

Reflecting this issue, the solution makes sense, since you should be able to select more than one group if the inheritance is not hierarchical!

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
10
gru 23
36713
3
lis 18
21410
1
lut 25
7711
23
kwi 23
48271
1
sty 20
19950