Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
2 Vastaukset
6427 Näkymät

By default, Project Managers can see project phases of all projects, even if they didn't create or aren't following the projects. I've tried using the following record rule:

['|',('user_id','=',False),('user_id','=',user.id)]

and applying it to the object 'project.phase' to limit read access to projects that they associated with, but doing so gives me the following error when I click on either the Project/Project or Project/Project Phases menu items:

raise ValueError("Invalid field %r in leaf %r" % (left, str(leaf))) ValueError: Invalid field 'user_id' in leaf "<osv.extendedleaf: ('user_id',="" '=", False) on project_phase (ctx: )&gt;"&lt;/p&gt; &lt;p&gt;Is their some way to change this record rule so that it allows Project Managers to see phases of projects that they are associated with but not projects they have nothing to do with&lt;/p&gt; ">

Avatar
Hylkää
Paras vastaus

Hi,

Maybe, you could find some help here.

Avatar
Hylkää
Tekijä

Thanks for the reply, but that's not exactly what I'm looking for. I think I've actually figured it out. See my answer below.

Tekijä Paras vastaus

The answer appears to be this:

I looked at the error again (Invalid field 'user_id' in leaf ) and wondered if that meant that the "user_id" was not actually contained in or referenced by the project.phase object. I looked at the existing record rule for tasks, 'Tasks According to User and Project', and noticed that it seemed to restrict users from seeing other users tasks but also had a part that seemed to permit them to see tasks that were associated with projects they were associated with, even if the tasks were not assigned to them directly.

This is the rule:

['|','|','|',('user_id','=',False),('user_id','=',user.id),('project_id.members','in', [user.id]),('project_id.user_id','=',user.id)]

So, I tried removing the user_id section and changed it to this:

['|',('project_id.members','in', [user.id]),('project_id.user_id','=',user.id)]

I added the group 'Project Managers', saved the record rule, and hey presto, it worked. Now Project Managers can only see phases from projects that they are associated with.

Not bad for someone who knows nothing about coding!

Bill.

edited to remove suggestion that this would work for project.project. Doing so causes an invalid field error on 'project_id.members'.

Avatar
Hylkää

BRAVO, Good job.

If we will not select any group and keep it global I think that will be great?

Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
2
heinäk. 19
2673
5
tammik. 24
14473
2
maalisk. 15
11183
1
maalisk. 15
3953
3
maalisk. 15
9840