Skip to Content
Menu
This question has been flagged
1 Odpoveď
5238 Zobrazenia

In official documentation, we have the following example for computed fields :

total = fields.Float(compute='_compute_total') 

@api.depends('value', 'tax')
def _compute_total(self):
for record in self:
record.total = record.value + record.value * record.tax

On the guidelines, we can read :

Be aware that this assignation will trigger a write into the database. If you need to do bulk change or must be careful about performance, you should do classic call to write 

My question is how can we do the bulk change ? Is it valid to add the decorator @api.multi over the compute function and do something like self.write() ?

Avatar
Zrušiť
Best Answer

Hi Emanuel,

Yes by using decorator @api.multi you can write bulk record of same model.

If you are overriding write metho than you have to define decorator

@api.multi

This is the standard convention we always use multi for write because if write method is already overriden some where in custom module it will create singlton error if you not follow the multi api.

Suggestion is to always use api.multi when write come to picture.

Hope this will help.

Rgds,

Anil.





Avatar
Zrušiť
Autor

Sorry, my question was not very clear. I wanted to know what should we do specifically for computed fields. Can we decorate the compute functions used in fields with @api.multi ?

@Emanuel cino, Yes when you decorate your computational field with api.multi than it will auto trigger the that methods when the records will be loaded or any changes going to happen in any of record in the same model.

Related Posts Replies Zobrazenia Aktivita
2
jún 24
1776
2
apr 24
3828
3
sep 20
4318
1
dec 16
7995
1
aug 16
3610