At the moment if I'm in the barcode module and press the Validate button, the window closes.
I want to change it so that I can first press Validate, and then add quantities and add to the package.
Any guidance or examples on how this can be done?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
At the moment if I'm in the barcode module and press the Validate button, the window closes.
I want to change it so that I can first press Validate, and then add quantities and add to the package.
Any guidance or examples on how this can be done?
class Picking(models.Model):
_inherit = "stock.picking"
class StockPicking(models.Model):
_inherit = "stock.picking"
def button_validate(self):
res = super(StockPicking, self).button_validate()
# Your code here
return res
Create an account today to enjoy exclusive features and engage with our awesome community!
РеєстраціяRelated Posts | Відповіді | Переглядів | Дія | |
---|---|---|---|---|
|
2
вер. 25
|
521 | ||
|
2
вер. 25
|
695 | ||
|
0
лют. 25
|
1829 | ||
|
0
груд. 24
|
46 | ||
|
0
груд. 24
|
1578 |