Files
rma/product_warranty/views/res_company.xml
bima c3faa2f12d Migrate to v10.0
- 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)
2017-05-24 20:46:48 +07:00

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>