Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
2 Replies
6294 Tampilan

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?

Avatar
Buang
Jawaban Terbai

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.

Avatar
Buang
Jawaban Terbai

for me in odoo11 i have to use store=True in py and force_save="1" in xml

Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
5
Apr 25
15877
2
Nov 18
2594
0
Nov 18
2503
1
Nov 18
5699
5
Feb 18
4811