mirror of
https://github.com/bringout/oca-ocb-sale.git
synced 2026-04-27 19:52:06 +02:00
23 lines
853 B
XML
23 lines
853 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="sale_order_form_mrp" model="ir.ui.view">
|
|
<field name="name">sale.order.inherited.form.mrp</field>
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button
|
|
name="action_view_mrp_production"
|
|
type="object"
|
|
class="oe_stat_button"
|
|
icon="fa-wrench"
|
|
invisible="mrp_production_count == 0"
|
|
groups="mrp.group_mrp_user">
|
|
<field name="mrp_production_count" widget="statinfo" string="Manufacturing"/>
|
|
</button>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|