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

For object Partner, I added record rule:

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

to sales man of "User - Own Leads Only" group, in order to restrict each salesman view his own partner(customer), and it's effective. But when viewing Sales-Address Book-contacts, and click Customer button(deactive it), all contacts appeared. How to avoid this?

I tried to add either rules below for object Partner Address with no success

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

Looking into database, tab res_partner_address has no user_id field.

Any other method to restrict access to view one's own contacts of one's own customer?

Awatar
Odrzuć
Najlepsza odpowiedź

Have you tried this on res.partner.address model:

['|',('partner_id.user_id','=',user.id),('user_id','=',False)]
Awatar
Odrzuć
Autor

['|',('partner_id.user_id','=',user.id),('partner_id.user_id','=',False)] is the rule! Thanks~

Najlepsza odpowiedź

replace

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

with

[('user_id', '=', user.id)]
Awatar
Odrzuć

In which file(res_partner or res_user)? Thanks.

Autor

Thanks for quick answer, Dhifi. But not effective. I have redescribed my question to make it more clear.

Powiązane posty Odpowiedzi Widoki Czynność
1
paź 21
3166
0
wrz 24
1056
0
lis 22
434
0
sie 21
11
1
lis 20
9217