Files
rma/crm_claim_rma/account_invoice_view.xml
Joel Grand-Guillaume 88392d8e60 [IMP] Clean of the module, mainly:
- Move unsused wizard in crm_claim_ext
- Move unused view in crm_claim_ext
- Move optionnal behavior (like hide the return button) to crm_claim_ext
- Fix and improve all views and filter
- Remove the field claim_picking as we can test claim_id for the same purpose
- Change the author by adding Camptocamp
- Adaptation of the description
2013-11-11 15:49:06 +01:00

21 lines
831 B
XML

<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- INHERITED VIEW FOR THE OBJECT : account_invoice -->
<record id="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>