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
- MRP
This question has been flagged
1
Reply
4127
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 | |
---|---|---|---|---|
|
2
May 25
|
1588 | ||
|
3
Dec 24
|
5158 | ||
|
1
Jul 24
|
2335 | ||
|
1
Jun 24
|
1659 | ||
|
2
Jun 24
|
2359 |