Skip to Content
मेन्यू
This question has been flagged
2 Replies
7265 Views

Hi,

I need to make a float field(which have a compute function) editable.I have tried writing an inverse function for but cant get a clear idea about writing it.

demo_cost = fields.Float(string='Construction Cost', compute='_compute_demo_cost')
@api.depends('field_a', 'field_b')
def _compute_demo_cost(self):
for line in self:
line.demo_cost = line.field_a * line.field_b

Can anyone suggest me a better method or correct inverse function for making this field editable.

Thanks

Avatar
Discard
Best Answer

Use the inverse function in the field definition - see documentation

demo_cost = fields.Float(string='Construction Cost ', compute='_compute_demo_cost', inverse='_set_demo_cost')

Avatar
Discard
Best Answer

Hello, 

Can you please check this link :  https://www.holdenrehg.com/blog/2021-03-01_odoo-inverse-field-guide/ to help out your compute field editable issue.

Avatar
Discard
Related Posts Replies Views Activity
3
अग॰ 24
13547
1
जून 25
15273
3
अप्रैल 25
5391
2
जुल॰ 24
2290
1
जन॰ 24
1724