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.
41 lines
1.7 KiB
41 lines
1.7 KiB
<odoo>
|
|
<data>
|
|
|
|
<!-- BOM-->
|
|
<record model="ir.ui.view" id="bom_view_inherit">
|
|
<field name="name">mrp.bom.cw.inherit</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>
|
|
</data>
|
|
</odoo>
|
|
|
|
|
|
|
|
|