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

I cannot view the databases that my co worker can view and this is same for some other co workers as well he has given me the access to the groups but still the problem exists

아바타
취소
베스트 답변

Hi,

Check Company Access (Multi-Company Setup)

In a multi-company setup, each user must be allowed to access each company explicitly.

Go to:

Settings → Users → Your User → Allowed Companies

  • Make sure all relevant companies are checked under "Allowed Companies"
  • Check the active company at the top right (company switcher) — you can only see data from that company unless the view is truly multi-company-aware

Groups Are Not Enough — Check Record Rules

Even if you're in the correct groups (like "Sales Manager", "Accounting User"), each model (eg, res.partner , sale.order ) might have record rules like this:

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

These rules restrict visibility to only records in your current company .

Fix:

  • Go to Settings → Technical → Security → Record Rules
  • Filter by model (eg, res.partner )
  • Check if any rule has a domain like: ('company_id', '=', user.company_id.id)
  • You may need to update the domain to:

['|',( 'company_id' , 'in' , user.company_ids.ids), ( 'company_id' , '=' , False )]

This allows the user to see records from all allowed companies , not just the currently active one.


If you're using custom modules (common in internal setups), some access rights may be restricted.

  • Ask your developer (or check yourself in Studio/custom modules) for overrides on models like res.partner , sale.order , project.task , etc.


I hope it is use full

아바타
취소
관련 게시물 답글 화면 활동
0
7월 25
1470
2
11월 24
6323
2
10월 24
3335
2
8월 24
1894
3
7월 24
8297