26 lines
975 B
XML
26 lines
975 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2026 Nexa Systems Inc.
|
|
License OPL-1 (Odoo Proprietary License v1.0)
|
|
Part of the Fusion Plating product family.
|
|
-->
|
|
<odoo>
|
|
|
|
<!-- ===== Smart button: Receiving on SO form ===== -->
|
|
<record id="view_sale_order_form_receiving" model="ir.ui.view">
|
|
<field name="name">sale.order.form.fp.receiving</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_receiving" type="object"
|
|
class="oe_stat_button" icon="fa-truck"
|
|
invisible="x_fc_receiving_count == 0">
|
|
<field name="x_fc_receiving_count" widget="statinfo" string="Receiving"/>
|
|
</button>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|