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.
37 lines
1.7 KiB
37 lines
1.7 KiB
<?xml version = "1.0" encoding = "UTF-8" ?>
|
|
<odoo>
|
|
<!-- Catch Weight fields in Mrp BOM form view-->
|
|
<record id="mrp_bom_form_view" model="ir.ui.view">
|
|
<field name="name">mrp.bom.view.form.inherit.cw.mrp</field>
|
|
<field name="model">mrp.bom</field>
|
|
<field name="inherit_id" ref="mrp.mrp_bom_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='product_id']"
|
|
position="after">
|
|
<field name="toggle_cw" 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="category_id" invisible="1"/>
|
|
<field name="cw_uom_id"
|
|
options="{'no_open':True,'no_create':True}"/>
|
|
</div>
|
|
</xpath>
|
|
<xpath expr="//field[@name='bom_line_ids']/tree/
|
|
field[@name='product_qty']"
|
|
position="after">
|
|
<field name="cw_hide" invisible="1"/>
|
|
<field name="category_id" invisible="1"/>
|
|
<field name="cw_qty"
|
|
attrs="{'invisible':[('cw_hide', '=', False)]}"/>
|
|
<field name="cw_uom_id"
|
|
options="{'no_open':True,'no_create':True}"
|
|
attrs="{'invisible':[('cw_hide', '=', False)]}"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|