Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
take value of a field on item add - sale order form
Hello !
I added a field in the sale order form and in the product template.
When, in the sale order form, I add an item, i want that the field I added in the form take the value of the field in the product template.
Do you know how can I do that ?
Sorry for my english.
Thanks.
Hi,
Rather you use @api.onchange to update the sale order line field by any value you want
@api.onchange('field1', 'field2') # if these fields are changed, call method def check_change(self): if self.field1 < self.field2: self.field3 = True # filed3 get True in the form view if field1 < field2
Or you can use related field. The field will be updated automatically by the ORM
field_x = fields.Char(related='product_id.field_x', store=True)
Best regards
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 8/12/16, 11:17 AM |
Seen: 683 times |
Last updated: 8/16/16, 6:24 AM |