Files
Odoo-Modules/fusion_loaners_management/views/sale_order_views.xml
gsinghpal e56974d46f update
2026-03-16 08:14:56 -04:00

18 lines
770 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="view_sale_order_loaner_stat_button" model="ir.ui.view">
<field name="name">sale.order.loaner.stat.button</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form"/>
<field name="arch" type="xml">
<xpath expr="//div[@name='button_box']" position="inside">
<button name="action_view_loaners" type="object"
class="oe_stat_button" icon="fa-wheelchair"
invisible="x_fc_loaner_count == 0">
<field name="x_fc_loaner_count" widget="statinfo" string="Loaners"/>
</button>
</xpath>
</field>
</record>
</odoo>