Files
manufacture/mrp_subcontracting_lot_number_propagation/views/stock_move_line.xml
2023-11-08 15:18:51 +01:00

62 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2022 Camptocamp SA
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.move.line.tree.inherit</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="lot_id" position="before">
<field name="is_lot_id_editable" invisible="1" />
</field>
</field>
</record>
<record id="view_move_line_tree_detailed" model="ir.ui.view">
<field name="name">stock.move.line.tree.detailed.inherit</field>
<field name="model">stock.move.line</field>
<field name="inherit_id" ref="stock.view_move_line_tree_detailed" />
<field name="arch" type="xml">
<field name="lot_id" position="before">
<field name="is_lot_id_editable" invisible="1" />
</field>
</field>
</record>
<record id="view_move_line_form" model="ir.ui.view">
<field name="name">stock.move.line.form.inherit</field>
<field name="model">stock.move.line</field>
<field name="inherit_id" ref="stock.view_move_line_form" />
<field name="arch" type="xml">
<field name="lot_id" position="before">
<field name="is_lot_id_editable" invisible="1" />
</field>
</field>
</record>
<record id="view_stock_move_line_operation_tree" model="ir.ui.view">
<field name="name">stock.move.line.operations.tree.inherit</field>
<field name="model">stock.move.line</field>
<field name="inherit_id" ref="stock.view_stock_move_line_operation_tree" />
<field name="arch" type="xml">
<field name="lot_id" position="before">
<field name="is_lot_id_editable" invisible="1" />
</field>
</field>
</record>
<record id="view_stock_move_line_detailed_operation_tree" model="ir.ui.view">
<field name="name">stock.move.line.operations.tree.inherit</field>
<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="lot_id" position="before">
<field name="is_lot_id_editable" invisible="1" />
</field>
</field>
</record>
</odoo>