I want to know how would I show products price on delivery slip report on odoo 15.
Asked
Active
Viewed 108 times
1 Answers
0
The delivery slip gets values from _get_aggregated_product_quantities
function
https://github.com/odoo/odoo/blob/15.0/addons/stock/models/stock_move_line.py#L777
So basically you can inherit the following view to add price field through product_id
https://github.com/odoo/odoo/blob/15.0/addons/stock/report/report_deliveryslip.xml

nouraellm
- 357
- 8
- 15