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

hi ,

i want to compute length of list by function and store  result  in the empty field  , i have done this but it isnt working

count_line = fields.Integer('Result')

    @api.multi
    def on_change_lines_ids(self,line_ids):
        if line_ids :
                for line in line_ids :
                    x = len(line_ids)
                    self.count_line = x
                raise except_orm(_('Bien fait !'))

thanks to help me


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

Hi for this you can use decorators onchange or depends

I'll show an example of onchange. for this I believe line_ids is a many2many or one2many field with more than one record.and you want to store its length to a field

count_line = fields.Integer('Result')

@api.onchange('line_ids')
def onchange_line_ids(self):

     self.count_line = len(self.line_ids)

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

More on...Python List

http://net-informations.com/python/ds/lists.htm




الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
1
أبريل 25
3627
3
ديسمبر 22
11539
5
أبريل 24
42069
6
أبريل 24
38945
2
يوليو 19
765