You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.3 KiB
55 lines
2.3 KiB
<odoo>
|
|
<data>
|
|
|
|
<!-- UNBUILD ORDER-->
|
|
<record model="ir.ui.view" id="mrp_unbuild_cw_view_inherit">
|
|
<field name="name">mrp.unbuild.cw.inherit</field>
|
|
<field name="model">mrp.unbuild</field>
|
|
<field name="inherit_id" ref="mrp.mrp_unbuild_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='bom_id']"
|
|
position="after">
|
|
|
|
<field name="toggle_cw" invisible="1"/>
|
|
<field name="category_id" invisible="1"/>
|
|
<label for="cw_qty" string="CW-Quantity"
|
|
attrs="{'invisible':[('toggle_cw', '=', False)],'required':[('toggle_cw', '=', True)]}"/>
|
|
<div class="o_row"
|
|
attrs="{'invisible':[('toggle_cw', '=', False)],'required':[('toggle_cw', '=', True)]}">
|
|
<field name="cw_qty"/>
|
|
<field name="cw_uom_id"
|
|
options="{'no_open':True,'no_create':True}"/>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- UNBUILD ORDER Wizard-->
|
|
|
|
<record model="ir.ui.view" id="mrp_unbuild_cw_simplified_view_inherit">
|
|
<field name="name">mrp.unbuild.simplified.cw.inherit</field>
|
|
<field name="model">mrp.unbuild</field>
|
|
<field name="inherit_id"
|
|
ref="mrp.mrp_unbuild_form_view_simplified"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='bom_id']"
|
|
position="after">
|
|
<field name="toggle_cw" invisible="1"/>
|
|
<field name="category_id" invisible="1"/>
|
|
<label for="cw_qty" string="CW-Quantity"
|
|
attrs="{'invisible':[('toggle_cw', '=', False)],'required':[('toggle_cw', '=', True)]}"/>
|
|
<div class="o_row"
|
|
attrs="{'invisible':[('toggle_cw', '=', False)],'required':[('toggle_cw', '=', True)]}">
|
|
<field name="cw_qty"/>
|
|
<field name="cw_uom_id"
|
|
options="{'no_open':True,'no_create':True}"/>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|
|
|
|
|
|
|
|
|