コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
2977 ビュー

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?


アバター
破棄

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

著作者 最善の回答

@Akshay

Your overwrite function is not working.

アバター
破棄
最善の回答

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




アバター
破棄
関連投稿 返信 ビュー 活動
1
8月 25
233
0
7月 25
354
2
6月 25
1409
1
5月 25
1420
0
3月 25
1263