Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2 Odpowiedzi
2980 Widoki

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?


Awatar
Odrzuć

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

Autor Najlepsza odpowiedź

@Akshay

Your overwrite function is not working.

Awatar
Odrzuć
Najlepsza odpowiedź

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




Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
sie 25
233
0
lip 25
354
2
cze 25
1415
1
maj 25
1420
0
mar 25
1263