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

Hello, I have a function that should validate that a product is of type ' Service' . When this condition is met the ' sequence' field must increase its value sequentially.  This method is written in the sale.order.line model.

Please if this function is badly implemented , tell me I can do to correct it.

I hope tips and suggestions thank you very much. Thanks

@api.depends('product_id.product_tmpl_id.type')

def _niu_validation(self):

    if product_id.product_tmpl_id.type == 'service':

          sequence= self.env['ir.sequence'].next_by_code('sale.order.line')

    return super(SaleOrderLine,self)

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

@Charlie

No return is needed from that function and you should use self.product_id if you call it that function using a recordset(also take care of multiple records in the recorset like iterate over self) or pass the product_id to the function if you call the function directly, like:

@api.depends('product_id.product_tmpl_id.type')
def _niu_validation(self, product_id):
    if product_id.type == 'service':
          sequence= self.env['ir.sequence'].next_by_code('sale.order.line')
الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
0
فبراير 16
3823
1
فبراير 16
3623
0
نوفمبر 18
6115
0
سبتمبر 20
3665
1
ديسمبر 19
17939