mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
27 lines
1003 B
XML
27 lines
1003 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
crm_claim_rma for OpenERP
|
|
Copyright (C) 2011 Akretion Benoît Guillot <benoit.guillot@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
|
|
<openerp>
|
|
<data>
|
|
<!-- INHERITED VIEW FOR THE OBJECT : account_invoice -->
|
|
|
|
<record id="crm_claim_rma.invoice_form" model="ir.ui.view">
|
|
<field name="name">crm_claim_rma.invoice_form</field>
|
|
<field name="model">account.invoice</field>
|
|
<field name="inherit_id" ref="account.invoice_form" />
|
|
<field eval="16" name="priority"/>
|
|
<field name="arch" type="xml">
|
|
<data>
|
|
<xpath expr="/form/sheet/notebook/page[@string='Other Info']/group/group/field[@name='origin']" position="after">
|
|
<field name="claim_id" attrs="{'invisible':[('type','!=','out_refund')]}"/>
|
|
</xpath>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|