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
14 lines
565 B
XML
14 lines
565 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="view_stock_quant_tree_inventory_editable" model="ir.ui.view">
|
|
<field name="model">stock.quant</field>
|
|
<field name="inherit_id" ref="stock.view_stock_quant_tree_inventory_editable" />
|
|
<field name="arch" type="xml">
|
|
<field name="inventory_diff_quantity" position="after">
|
|
<field name="currency_id" invisible="1" />
|
|
<field name="adjustment_cost" sum="Total" optional="show" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|