51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2014-2022 Akretion (http://www.akretion.com/)
|
|
@author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_move_line_tree" model="ir.ui.view">
|
|
<field name="name">stock_usability.stock.move.line.tree</field>
|
|
<field name="model">stock.move.line</field>
|
|
<field name="inherit_id" ref="stock.view_move_line_tree" />
|
|
<field name="arch" type="xml">
|
|
<field name="qty_done" position="before">
|
|
<field name="reserved_uom_qty" sum="1"/>
|
|
</field>
|
|
<field name="qty_done" position="attributes">
|
|
<attribute name="sum">1</attribute>
|
|
</field>
|
|
<field name="state" position="after">
|
|
<button type="object" name="button_do_unreserve" string="Unreserve"
|
|
groups="stock.group_stock_user"
|
|
states="partially_available,assigned"
|
|
icon="fa-ban"/>
|
|
</field>
|
|
<field name="product_id" position="after">
|
|
<field name="product_barcode" optional="hide"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- View embedded in picking -->
|
|
<record id="view_stock_move_line_detailed_operation_tree" model="ir.ui.view">
|
|
<field name="model">stock.move.line</field>
|
|
<field name="inherit_id" ref="stock.view_stock_move_line_detailed_operation_tree" />
|
|
<field name="arch" type="xml">
|
|
<field name="product_id" position="after">
|
|
<field name="product_barcode" optional="hide"/>
|
|
</field>
|
|
<field name="qty_done" position="attributes">
|
|
<attribute name="sum">1</attribute>
|
|
</field>
|
|
<field name="reserved_uom_qty" position="attributes">
|
|
<attribute name="sum">1</attribute>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|