I need the salesperson to always be the same when creating a new sales order.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
Hi,
* Enable debug mode
* Select the sales person in the field
* Click Debugger button
* Click Set Defaults
* In Pop up, select sales person = value in the field
* Save
See: How To Set Default Value For A Field in Odoo
Now the selected sales person will be defaulted always.
Thanks
Activate Developer Mode> Edit Sales Order Form> Enable Debugging> Customization> Locate Sales Order Model> Set Default Value > Save Changes.
Hello Maicon,
You can use following code to set default salesperson
from odoo import models, fields
class ResPartner(models.Model):
_inherit = 'res.partner'
def default_get(self, fields):
res = super(ResPartner, self).default_get(fields)
if 'user_id' in fields:
res['user_id'] = your_default_salesperson_id # Replace with appropriate ID
return res
I hope this code will help you
Thanks & Regards,
Ankit Vaghela
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng ký