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.6 KiB
37 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inherited form view of BOM-->
|
|
<record model="ir.ui.view" id="mrp_bom_form_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"
|
|
invisible="toggle_cw == False"
|
|
required="toggle_cw == True"/>
|
|
<div class="o_row"
|
|
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"
|
|
invisible="cw_hide == False"/>
|
|
<field name="cw_uom_id"
|
|
options="{'no_open':True,'no_create':True}"
|
|
invisible="cw_hide == False"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|