I need to custom view to my sellers, I need them to see only their assigned clients
Please help me with this request
Thanks so much
Roberto
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I need to custom view to my sellers, I need them to see only their assigned clients
Please help me with this request
Thanks so much
Roberto
For this you can use a record rule for example in my case i want my users to see only those records in which they are manager so i simply use
[('manager_id.user_ids','=',user.id)]
manager_id is my custom field in the view, you can use your custom field which you use for assigning users to each record. Also you can create a group for which this record rule may only apply.
Hope it helps.
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Dec 24
|
56 | ||
|
0
May 24
|
249 | ||
|
1
Dec 23
|
1091 | ||
|
0
Dec 23
|
310 | ||
|
0
Jun 23
|
548 |
Thanks Abdullah, I will test it!