22 lines
703 B
XML
22 lines
703 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2024 Akretion France (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_form" model="ir.ui.view">
|
|
<field name="name">mrp_usability.stock.move.line.form</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="reference" position="before">
|
|
<field name="production_id" attrs="{'invisible': [('production_id', '=', False)]}"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|