Files
manufacture/mrp_component_operation/views/mrp_production_views.xml
2022-12-30 11:22:30 +01:00

19 lines
744 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_production_form_view" model="ir.ui.view">
<field name="name">mrp.production.form</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view" />
<field name="arch" type="xml">
<button name="button_scrap" position="after">
<button
name="button_operate_components"
type="object"
string="Operate Components"
attrs="{'invisible': [('state', 'in', ('cancel', 'draft', 'done'))]}"
/>
</button>
</field>
</record>
</odoo>