diff options
Diffstat (limited to 'indoteknik_custom/views')
| -rw-r--r-- | indoteknik_custom/views/mrp_production.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/indoteknik_custom/views/mrp_production.xml b/indoteknik_custom/views/mrp_production.xml new file mode 100644 index 00000000..f81d65e8 --- /dev/null +++ b/indoteknik_custom/views/mrp_production.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<odoo> + <record id="production_mrp_form_view_inherited" model="ir.ui.view"> + <field name="name">mrp.production.view.inherited</field> + <field name="model">mrp.production</field> + <field name="inherit_id" ref="mrp.mrp_production_form_view" /> + <field name="arch" type="xml"> + <field name="bom_id" position="after"> + <field name="desc"/> + </field> + </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> + <field name="inherit_id" ref="mrp.mrp_production_tree_view" /> + <field name="arch" type="xml"> + <field name="product_id" position="after"> + <field name="desc"/> + </field> + </field> + </record> +</odoo> |
