Files
stock-logistics-warehouse/stock_quant_cost_info/views/report_stockinventory.xml
Carlos Roca 2c2f4d326a [MIG] stock_quant_cost_info: Migration to 15.0
- Module renamed from stock_inventory_cost_info to stock_quant_cost_info
- Add changes to allow show the cost difference when changing qty from stock.quants

TT36551
2023-05-08 15:49:54 -04:00

22 lines
661 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="report_inventory_cost_info" inherit_id="stock.report_inventory">
<xpath
expr="//table[.//span[@t-field='line.inventory_quantity']]/thead/tr"
position="inside"
>
<th class="text-right">
<strong>Adjustment cost</strong>
</th>
</xpath>
<xpath
expr="//tr[.//span[@t-field='line.inventory_quantity']]"
position="inside"
>
<td class="text-right">
<span t-field="line.adjustment_cost" />
</td>
</xpath>
</template>
</odoo>