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.
20 lines
1.0 KiB
20 lines
1.0 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Inherits mrp_production_form_view to add cancel button in done state -->
|
|
<record id="mrp_production_form_view" model="ir.ui.view">
|
|
<field name="name">mrp.production.view.form.inherit.cancel.mo</field>
|
|
<field name="model">mrp.production</field>
|
|
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<button name="action_cancel" position="before">
|
|
<button name="action_cancel_mo"
|
|
invisible="state != 'done' or cancel_inventory_moves != True and cancel_workorder != True"
|
|
type="object" string="Cancel"/>
|
|
</button>
|
|
<xpath expr="//page[@name='miscellaneous']//field[@name='picking_type_id']" position="after">
|
|
<field name="cancel_inventory_moves" invisible="0"/>
|
|
<field name="cancel_workorder" invisible="0"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|