İçereği Atla
Menü
Bu soru işaretlendi
1 Cevapla
4533 Görünümler

I want to do some stuff before validating a delivery order in the inventory module. How can I override the validate method?

Avatar
Vazgeç
En İyi Yanıt

Hi,

You can over ride the validate button in the inventory transfers(stock.picking) like this, Inherit the corresponding model, then call super like this,

class Picking(models.Model):
_inherit = "stock.picking"

def button_validate(self):
# do your necessary actions here
res = super(Picking, self).button_validate()
return res

Thanks

Avatar
Vazgeç
Üretici

thanks a lot

İlgili Gönderiler Cevaplar Görünümler Aktivite
1
Mar 22
4880
0
Tem 24
1880
1
Mar 24
2172
Out of Stock Çözüldü
4
Şub 24
5191
1
Tem 23
2828