[IMP] mrp_progress_button: Unstart button and date_start field added

This commit is contained in:
Bernat Puig Font
2021-11-10 16:19:00 +01:00
parent 29873b2558
commit aa1b5ebaf7
4 changed files with 24 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="mrp_production_progress_button_form_view" model="ir.ui.view">
<field name="name">mrp.production.view.form.progress.button</field>
<field name="model">mrp.production</field>
<field name="inherit_id" ref="mrp.mrp_production_form_view" />
<field name="arch" type="xml">
@@ -14,7 +14,17 @@
class="oe_highlight"
/>
</button>
<button name="action_assign" position="after">
<button
name="action_unstart"
attrs="{'invisible': [('state', '!=', 'progress')]}"
type="object"
string="Unstart"
/>
</button>
<field name="company_id" position="after">
<field name="date_start" />
</field>
</field>
</record>
</odoo>