mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
26 lines
917 B
XML
26 lines
917 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
crm_claim_categ_as_name for OpenERP
|
|
Copyright (C) 2012-2014 Akretion Benoît GUILLOT <benoit.guillot@akretion.com>
|
|
The licence is in the file __openerp__.py
|
|
-->
|
|
<openerp>
|
|
<data>
|
|
|
|
<record model="ir.ui.view" id="crm_claim_rma_form_view">
|
|
<field name="name">CRM - Claim product return Form</field>
|
|
<field name="model">crm.claim</field>
|
|
<field name="inherit_id" ref="crm_claim_rma.crm_claim_rma_form_view2"/>
|
|
<field name="arch" type="xml">
|
|
<field name="name" position="replace">
|
|
<field name="categ_id" string="Name"/>
|
|
</field>
|
|
<xpath expr="/form/sheet/group/notebook/page[@string='Claim Description']/group/field[@name='categ_id']" position="replace">
|
|
<field name="name" invisible="1"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|