Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
2985 Lượt xem

I want to disable following stock.inventory default function using my custom module:

@api.onchange('product_id', 'location_id', 'product_uom_id', 'prod_lot_id', 'partner_id', 'package_id')
def onchange_quantity_context(self):
if self.product_id and self.location_id and self.product_id.uom_id.category_id == self.product_uom_id.category_id: # TDE FIXME: last part added because crash
self._compute_theoretical_qty()
self.product_qty = self.theoretical_qty

Anyone can help?


Ảnh đại diện
Huỷ bỏ

Hope this customization tips will helps: https://goo.gl/8HgnCF

Tác giả Câu trả lời hay nhất

@Akshay

Your overwrite function is not working.

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

Inherit the model, then overwrite the function.

@api.onchange('product_id', 'location_id', 'product_uom_id', 'prod_lot_id', 'partner_id', 'package_id')
def onchange_quantity_context(self):
pass




Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 8 25
234
0
thg 7 25
354
2
thg 6 25
1420
1
thg 5 25
1420
0
thg 3 25
1263