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

I have a field in a module:

payment_amount_overdue = fields.Float(

compute='_get_amounts_and_date',

string="Amount Overdue",

store = False,

)


This field is not stored, so it's not searchable.

How can I make a related field to this field , to store the values in the database?

I tried with this, but this is not working:

payment_amount_due_store = fields.Float(related='partner_id.payment_amount_overdue', string="TEST", store=True)


Thank you for your help.








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

payment_amount_overdue field is not store, due to that reason you are getting this issue.

If your requirement is search field then you can use search option in field.

payment_amount_overdue = fields.Float(compute='_get_amounts_and_date',search='_search_method',string="Amount Overdue",store = False)

def _search_method(self,operator,value):

     return [('id','in',ids)]

You can create search method and write logic in that method and return ids.

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
نوفمبر 17
7336
1
مايو 17
3414
9
مايو 20
8133
7
أكتوبر 18
10379
0
مايو 17
2901