mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
19 lines
806 B
XML
19 lines
806 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2020 ACSONE SA/NV
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
<record model="ir.ui.view" id="stock_quant_tree_view">
|
|
<field name="name">stock.quant.tree (in stock_quant_view_reservations)</field>
|
|
<field name="model">stock.quant</field>
|
|
<field name="inherit_id" ref="stock.view_stock_quant_tree_editable" />
|
|
<field name="arch" type="xml">
|
|
<field name="reserved_quantity" position="attributes">
|
|
<attribute name="optional" />
|
|
</field>
|
|
<field name="reserved_quantity" position="after">
|
|
<button name="action_view_reservations" type="object" icon="fa-eye" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|