I need To append a custom quantity to the demand in the reciept while confiriming the purchase order
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
1
Reply
3474
Views
class purchase_custom(models.Model):
_inherit = 'purhcase.order'
def button_confirm(self):
res = super(purchase_custom, self).button_confirm()
// write your custom code here
return res
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
3
Dec 24
|
2365 | ||
|
1
Jul 24
|
707 | ||
|
1
Jun 24
|
775 | ||
|
2
Jun 24
|
898 | ||
|
1
Mar 24
|
538 |