23 lines
1009 B
XML
23 lines
1009 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="mrp_production_form_view_inherit" model="ir.ui.view">
|
|
<field name="name">mrp.production.form.inherit</field>
|
|
<field name="model">mrp.production</field>
|
|
<field name="inherit_id" ref="mrp.mrp_production_form_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@name='button_box']" position="inside">
|
|
<button
|
|
class="oe_stat_button" name="action_view_repair_orders" type="object"
|
|
icon="fa-wrench" groups="stock.group_stock_user"
|
|
invisible="repair_count == 0">
|
|
<div class="o_field_widget o_stat_info">
|
|
<field name="repair_count" string="Repairs" widget="statinfo"/>
|
|
</div>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|