24 lines
966 B
XML
24 lines
966 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<odoo>
|
||
|
<data>
|
||
|
<record id="view_sale_order_form_inherit_repair" model="ir.ui.view">
|
||
|
<field name="name">sale.order.form.inherit.repair</field>
|
||
|
<field name="model">sale.order</field>
|
||
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
||
|
<field name="arch" type="xml">
|
||
|
<xpath expr="//button[@name='action_view_invoice']" position="after">
|
||
|
<button
|
||
|
name="action_show_repair"
|
||
|
type="object"
|
||
|
class="oe_stat_button"
|
||
|
icon="fa-wrench"
|
||
|
invisible="repair_count == 0"
|
||
|
groups="stock.group_stock_user">
|
||
|
<field name="repair_count" widget="statinfo" string="Repairs"/>
|
||
|
</button>
|
||
|
</xpath>
|
||
|
</field>
|
||
|
</record>
|
||
|
</data>
|
||
|
</odoo>
|