This question has been flagged
3 Replies
26661 Views

For compute a field does it require @api.depends decorator


Avatar
Discard
Best Answer

Hi Bro,
It's not mandatory to use the depends decorator, the compute field is run when the form is loaded or tree is loaded, as same time the compute function use many other fields, that time we need to add this fields in depends decorator, then its work fine, otherwise or some cases its make some issues.
So the best option is give the depend fields in depends decoder. 

Avatar
Discard
Best Answer

Hi Vineeth,

Yes, for compute field you must apply @api.depends decorator to specify the field dependencies; those dependencies are used to determine when to recompute the field.


Hope this helps.

Avatar
Discard

I prefer this answer : I found a solution which worked with @api.depends(...),

then I dropped the @api.depends(...) line in my code and the field was not updated dynamically anymore in the form (even if the field remained computed on form load)

so, I put the @api.depends(...) back !

Best Answer

It's not mandatory use depends decorator, if computed fields isn't store True code should be like this:

@api.one

def _compute_fieldA

@api.depends must be used like a trigger, for example if you want to recompute some function field when other field change.

@api.multi

@api.depends('fieldB')

def _compute_fieldA(self)

Avatar
Discard