Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
1 Balas
2679 Tampilan

(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
Buang
Jawaban Terbai

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
Buang

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)]",)

Post Terkait Replies Tampilan Aktivitas
1
Mar 25
507
1
Mei 24
1119
0
Agu 22
1342
1
Jan 25
527
2
Feb 24
6160