콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
6443 화면

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; ">

아바타
취소
베스트 답변

Hi,

Maybe, you could find some help here.

아바타
취소
작성자

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.

작성자 베스트 답변

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'.

아바타
취소

BRAVO, Good job.

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

관련 게시물 답글 화면 활동
2
7월 19
2673
5
1월 24
14484
2
3월 15
11189
1
3월 15
3961
3
3월 15
9843