mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
- 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
22 lines
661 B
XML
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>
|