diff options
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/mrp_production.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/indoteknik_custom/views/mrp_production.xml b/indoteknik_custom/views/mrp_production.xml index f8278f39..419737f9 100644 --- a/indoteknik_custom/views/mrp_production.xml +++ b/indoteknik_custom/views/mrp_production.xml @@ -20,10 +20,26 @@ <page string="Purchase Match" name="purchase_order_lines_indent"> <field name="production_purchase_match"/> </page> + <page string="Check Product" name="check_bom_product"> + <field name="check_bom_product_lines"/> + </page> </xpath> </field> </record> + <record id="check_bom_product_tree" model="ir.ui.view"> + <field name="name">check.bom.product.tree</field> + <field name="model">check.bom.product</field> + <field name="arch" type="xml"> + <tree editable="bottom" decoration-warning="status == 'Pending'" decoration-success="status == 'Done'"> + <field name="code_product"/> + <field name="product_id"/> + <field name="quantity"/> + <field name="status" readonly="1"/> + </tree> + </field> + </record> + <record id="production_mrp_tree_view_inherited" model="ir.ui.view"> <field name="name">mrp.production.view.inherited</field> <field name="model">mrp.production</field> |
