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.
 
 
 
 
 

23 lines
1.2 KiB

<?xml version="1.0"?>
<odoo>
<!-- MRP Production Form View Inherited-->
<record id="mrp_production_form_view" model="ir.ui.view">
<field name="name">mrp.production.view.form.inherit.so.bom.selection</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='user_id']" position="after">
<field name="origin" string="Source"/>
</xpath>
<xpath expr="//field[@name='product_id']" position="after">
<label for="qty_to_produce" string="Quantity to Produce" attrs="{'invisible': [('state','not in',('draft','confirmed'))]}"/>
<div class="o_row g-0 d-flex" attrs="{'invisible': [('state','not in',('draft','confirmed'))]}">
<div class="o_row flex-grow-0">
<field name="qty_to_produce" string="Quantity to Produce"/>
</div>
<button name="action_update_quantity" string="Update" type="object"/>
</div>
</xpath>
</field>
</record>
</odoo>