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

hai 

i want to show a status feild on the user. i have a table for the payments the user made and have an invoice table. if there are pending payments then the account status need to be inactive and if no pending payment then the user is active. how this can be done?

 

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

Hi, you can use a functional field( a compute field in new api) for that. So in the function you can perform all the calculations based on the payments and return a status value, which will be displayed on the user profile.

For Eg:

class custom_res_partner(models.Model):

     _inherits = 'res.partner'

    status = fields.Boolean(compute='_check_status', string="Status")

   

    def _check_status(self):

        for rec in self:

            if payment_done:            // do your calculations based on payments

                   rec.status =True

            else:

                   rec.status = False

الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
4
أكتوبر 22
7987
0
يناير 21
2484
5
يوليو 19
4980
1
ديسمبر 17
7685
2
نوفمبر 16
6492