Hi,
I'm trying to make the "Cost" field show the last price we purchased products for. In other words, as new POs are made, costs are automatically updated.
Any ideas?
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
1
Rispondi
1667
Visualizzazioni
Hi,
You can inherit the purchase.order model and add the code to change the price of the product in the button_confirm function.
Please refer the code given below:
_inherit = "purchase.order"
def button_confirm(self):
for rec in self.order_line:
rec.product_id.standard_price = rec.price_unit
return super().button_confirm()
Hope it helps
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
Registrati
where do i put this code?