I want to do some stuff before validating a delivery order in the inventory module. How can I override the validate method?
신고된 질문입니다
1
회신
6207
화면
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
thanks a lot
| 관련 게시물 | 답글 | 화면 | 활동 | |
|---|---|---|---|---|
|
|
1
3월 22
|
6682 | ||
|
|
0
7월 24
|
4665 | ||
|
|
1
3월 24
|
4709 | ||
|
Out of Stock
해결 완료
|
|
4
2월 24
|
8141 | |
|
|
1
7월 23
|
5025 |