mirror of
https://github.com/OCA/manufacture.git
synced 2025-01-28 16:37:15 +02:00
23 lines
985 B
XML
23 lines
985 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="view_repair_order_form_repair_stock_move_inherited" model="ir.ui.view">
|
|
<field name="name">repair.order.form - repair_stock_move - custom</field>
|
|
<field name="model">repair.order</field>
|
|
<field name="inherit_id" ref="repair_stock_move.view_repair_order_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[hasclass('oe_button_box')]" position="inside">
|
|
<button
|
|
name="action_view_pickings"
|
|
type="object"
|
|
class="oe_stat_button"
|
|
icon="fa-truck"
|
|
attrs="{'invisible': [('picking_count', '=', 0)]}"
|
|
help="Transfers associated with this repair order"
|
|
>
|
|
<field name="picking_count" widget="statinfo" string="Transfers" />
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|