This question has been flagged
1 Reply
1353 Views

(I'm new in odoo and still learning so bear with me) Using record rules I was able to limit my user from viewing all customers in his contact list to only view the ones that have as salesperson, I used this domain expression : [('user_id','=',user.id)] .

The issue that Im facing is when I try to create a new sale order with this user I get this error : 

The requested operation ("read" on "Users" (res.users)) was rejected because of the following rules:

(Records: False (id=8), User: False (id=8))

Implicitly accessed through 'Users' (res.users).

My goal is to give my user access to only view his customers in contact list and when he create a sale order (in the customer list).

Avatar
Discard
Best Answer

Hello, simo br
Hope you doing well.

You can inherit sale.order model and redefine field partner_id like in example use domain like this "[('user_id', '=', user_id)]" in field and it will show only his customers in contact list when he create a sale order.

Please find code in comment. 

I hope this would be helpful.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Discard

Please find code here :-

partner_id = fields.Many2one(
'res.partner', string='Customer', readonly=True,
states={'draft': [('readonly', False)], 'sent': [('readonly', False)]},
required=True, change_default=True, index=True, tracking=1,
domain="[('type', '!=', 'private'), ('company_id', 'in', (False, company_id)), ('user_id', '=', user_id)]",)