콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
4806 화면

class ProductAutoBarcode(models.Model): 

 _inherit = 'product.product'
@api.model def create(self, vals): 

 numbers = self.env['ir.sequence'].next_by_code('product.barcode') or _('New') 

#vals.update({'barcode':numbers}) #i try same result

#vals['barcode'] = numbers #i try same result

 res = super(ProductAutoBarcode, self).create(vals) 

 res.write({'barcode': numbers}) 

 return res

Problem is 

Case 1

when i create product with single variants like Size = Small its not generate barcode seqence even show in print command

barcode filed = empty 

Case 2

when i create product with multi variants like Size = Small,Medium,Large barcode is generated at that time its skip first varients Small 

product size small empty

product size medium 0xxxxxxxxxx ok

product size Large 0xxxxxxxxxx ok


Case 3

In short its leave always first barcode number for first product variants 


아바타
취소
관련 게시물 답글 화면 활동
0
4월 24
2092
5
12월 19
3851
0
8월 19
4
5
8월 19
2935
1
2월 19
7073