mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="view_rma_line_form" model="ir.ui.view">
|
|
<field name="name">rma.order.line.supplier.form</field>
|
|
<field name="model">rma.order.line</field>
|
|
<field name="inherit_id" ref="rma.view_rma_line_supplier_form"/>
|
|
<field name="arch" type="xml">
|
|
<div name='button_box' position="inside">
|
|
<button type="object" name="action_view_purchase_order"
|
|
class="oe_stat_button"
|
|
icon="fa-shopping-cart"
|
|
groups="purchase.group_purchase_user">
|
|
<field name="purchase_count" widget="statinfo"
|
|
string="Purchase Orders"/>
|
|
</button>
|
|
</div>
|
|
<group name="quantities" position="inside">
|
|
<group>
|
|
<field name="qty_purchased"/>
|
|
</group>
|
|
</group>
|
|
<notebook position="inside">
|
|
<page name="purchase" string="Purchase Lines">
|
|
<field name="purchase_order_line_ids" nolabel="1"/>
|
|
</page>
|
|
</notebook>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|