24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Backport from Odoo v14
|
|
Copyright Odoo SA
|
|
Same licence as Odoo (LGPL)
|
|
-->
|
|
|
|
<odoo>
|
|
<record id="view_order_form" model="ir.ui.view">
|
|
<field name="model">sale.order</field>
|
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
|
<field name="groups_id" eval="[(6, 0, [ref('mrp.group_mrp_user')])]"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@name='button_box']" position="inside">
|
|
<button class="oe_stat_button" name="action_view_mrp_production" type="object" icon="fa-wrench" attrs="{'invisible': [('mrp_production_count', '=', 0)]}" groups="mrp.group_mrp_user">
|
|
<div class="o_field_widget o_stat_info">
|
|
<span class="o_stat_value"><field name="mrp_production_count"/></span>
|
|
<span class="o_stat_text">Manufacturing</span>
|
|
</div>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|