mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
87 lines
3.1 KiB
XML
87 lines
3.1 KiB
XML
<?xml version="1.0" ?>
|
|
<odoo>
|
|
<record id="view_rma_form" model="ir.ui.view">
|
|
<field name="name">rma.order.form - rma_account</field>
|
|
<field name="model">rma.order</field>
|
|
<field name="inherit_id" ref="rma.view_rma_form" />
|
|
<field name="arch" type="xml">
|
|
<button name="action_view_out_shipments" position="after">
|
|
<button
|
|
type="object"
|
|
name="action_view_invoice_refund"
|
|
class="oe_stat_button"
|
|
icon="fa-pencil-square-o"
|
|
groups="account.group_account_user"
|
|
>
|
|
<field
|
|
name="invoice_refund_count"
|
|
widget="statinfo"
|
|
string="Refunds"
|
|
/>
|
|
</button>
|
|
<button
|
|
type="object"
|
|
name="action_view_invoice"
|
|
class="oe_stat_button"
|
|
icon="fa-pencil-square-o"
|
|
groups="account.group_account_user"
|
|
>
|
|
<field
|
|
name="invoice_count"
|
|
widget="statinfo"
|
|
string="Origin Inv"
|
|
/>
|
|
</button>
|
|
</button>
|
|
<!--
|
|
<xpath expr="//field[@name='rma_line_ids']/tree/field[@name='price_unit']"
|
|
position="after">
|
|
<field name="account_move_line_id" invisible="True"/>
|
|
</xpath>
|
|
-->
|
|
</field>
|
|
</record>
|
|
|
|
<record id="view_rma_supplier_form" model="ir.ui.view">
|
|
<field name="name">rma.order.supplier.form</field>
|
|
<field name="model">rma.order</field>
|
|
<field name="inherit_id" ref="rma.view_rma_supplier_form" />
|
|
<field name="arch" type="xml">
|
|
<button name="action_view_out_shipments" position="after">
|
|
<button
|
|
type="object"
|
|
name="action_view_invoice_refund"
|
|
class="oe_stat_button"
|
|
icon="fa-pencil-square-o"
|
|
groups="account.group_account_user"
|
|
>
|
|
<field
|
|
name="invoice_refund_count"
|
|
widget="statinfo"
|
|
string="Refunds"
|
|
/>
|
|
</button>
|
|
<button
|
|
type="object"
|
|
name="action_view_invoice"
|
|
class="oe_stat_button"
|
|
icon="fa-pencil-square-o"
|
|
groups="account.group_account_user"
|
|
>
|
|
<field
|
|
name="invoice_count"
|
|
widget="statinfo"
|
|
string="Origin Inv"
|
|
/>
|
|
</button>
|
|
</button>
|
|
<!--
|
|
<xpath expr="//field[@name='rma_line_ids']/tree"
|
|
position="inside">
|
|
<field name="account_move_line_id" invisible="True"/>
|
|
</xpath>
|
|
-->
|
|
</field>
|
|
</record>
|
|
</odoo>
|