mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright 2019 Open Source Integrators
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
|
|
<odoo>
|
|
|
|
<!-- Stock move Form view -->
|
|
<record id="stock_move_reason_code_form" model="ir.ui.view">
|
|
<field name="name">stock.move.reason.code.form</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_picking_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[1]" position='after'>
|
|
<field name="scrapped" invisible="1"/>
|
|
<group string="Reason Code" attrs="{'invisible': [('scrapped', '!=', True)]}">
|
|
<field name="reason_code_id"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="stock_reason_code_form" model="ir.ui.view">
|
|
<field name="name">stock.reason.code.form</field>
|
|
<field name="model">stock.move</field>
|
|
<field name="inherit_id" ref="stock.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='origin_grp']" position='after'>
|
|
<field name="scrapped" invisible="1"/>
|
|
<group string="Reason Code" attrs="{'invisible': [('scrapped', '!=', True)]}">
|
|
<field name="reason_code_id"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|