mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
- Add dependency sale because group "group_sale_salesman" and "group_sale_manager" are defined on modul sales_team * sale depend to sales_team * update ir.model.access base. -> sales_team. - Fix product.prod_config_main not compatible and moved to sale.prod_config_main - Make removed col="6 when add product supplier info field too small (width)
22 lines
773 B
XML
22 lines
773 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- INHERITED VIEW FOR THE OBJECT : res_company -->
|
|
|
|
<record id="company_form" model="ir.ui.view">
|
|
<field name="name">crm_claim_rma.company_form</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='company_registry']/ancestor::group" position="after">
|
|
<separator string="Crm product return address"/>
|
|
<group>
|
|
<field name="crm_return_address_id"/>
|
|
</group>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|