I have two fields in model res.contract "society_id" and "phase_id" inherited from "file" model. And in "file" model these two fields are related. I think that is why it is not saving these fields in my current model. I have used force_save = "1" attribute but still no luck. Any help?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- सीआरएम
- e-Commerce
- लेखांकन
- इन्वेंटरी
- PoS
- Project
- MRP
This question has been flagged
2
Replies
6269
Views
In the file model, you are not saving the related fields into the database. In the file model write like this:
phase_id = fields.Many2one(comodel_name='your.model', string='Your String',
related='model_field.phase_id', store='True')
society_id = fields.Many2one(comodel_name='your.model', string='Your String',
related='model_field.society_id', store='True')
Now you should get the value.
for me in odoo11 i have to use store=True in py and force_save="1" in xml
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
5
अप्रैल 25
|
15859 | ||
|
2
नव॰ 18
|
2591 | ||
|
0
नव॰ 18
|
2500 | ||
|
1
नव॰ 18
|
5688 | ||
|
5
फ़र॰ 18
|
4809 |