تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
37732 أدوات العرض

I'm creating a record through a RPC call and want to calculate some fields on the model using the option store=True,  my question is: 


If I use the store=True option the field it's computed everytime i open that record or just the first time? 


Can't find a clear explanation about that in the documentation, hope you can help my about this.

Regards



الصورة الرمزية
إهمال
أفضل إجابة

Whether stored or not stored, computed fields have a compute method. The annotation on the compute method specifies when the re-calculation should run, depending on if it's stored or not.

For example (stored):

@api.depends('name', 'surname')
def compute_display_name(self):
# This will be called every time the name or surname field changes
pass

display_name = fields.Char(compute=compute_display_name, store=True)

For example (not stored):

def compute_display_name(self):
# This will be called every time the field is viewed
pass

display_name = fields.Char(compute=compute_display_name, store=False)
الصورة الرمزية
إهمال
الكاتب

Thanks for your answer

you should make sure if the function will be invoked if the flag store=true with the decorator depends. Just check

المنشورات ذات الصلة الردود أدوات العرض النشاط
1
مايو 23
2341
3
مايو 23
17239
2
يوليو 22
6988
1
سبتمبر 21
14086
3
فبراير 24
18132