跳至内容
菜单
此问题已终结
2 回复
6298 查看

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?

形象
丢弃
最佳答案

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

形象
丢弃
相关帖文 回复 查看 活动
5
4月 25
15879
2
11月 18
2596
0
11月 18
2504
1
11月 18
5702
5
2月 18
4811