تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
7989 أدوات العرض

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?

الصورة الرمزية
إهمال
الكاتب أفضل إجابة

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!

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
10
ديسمبر 23
36716
3
نوفمبر 18
21416
1
فبراير 25
7713
23
أبريل 23
48275
1
يناير 20
19959