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.
Get field value from another form
Hi to all,
I am new to openerp v7 and knows little about python.
I want to get the value of a custom field in a purchase order automatically from a sale order from.
What I've done so far is: I have created a custom field in a sale order from and done the same for purchase order from. I've installed mrp_jit module to convert sales order to purchase order automatically, but the value of the custom field in the purchase order is not filling in automatically. I want it to fill automatically like source document. What do I have to do?
Thanks in advance for any kind of help.
Your custom field is not auto-filled in PO because you have not passed the value in the create function of PO. Means in mrp_jit module there will be a function defined to convert the sale order to PO. By default, your custom field will not be defined in that function.
What you have to do is, inherit that function to you custom module and define your custom field in the function so that it gets passed from SO to PO.
I hope this helps you.
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: 1/21/14, 2:21 AM |
Seen: 1917 times |
Last updated: 8/12/17, 6:29 AM |
read this article http://openerpnotes.blogspot.com/2013/02/on-change-event-on-field.html hope this help