Odoo Technical

Welcome!

This community is for professionals and enthusiasts of our products and services.
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.

0

Precompute

Avatar
Santhosh

Please give me detailed explanation 

Avatar
Discard
1 Answer
0
Avatar
pavithra_s
Best Answer

Whether the field should be computed before records insertion in the database. Should be used to specify manually some fields as precompute=True when the field can be computed before record insertion.

Eg: total = fields.Float(compute="_compute_total", precompute=True)


Avatar
Discard