You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
908 B
25 lines
908 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<record id="view_company_form" model="ir.ui.view">
|
|
<field name="name">res.company.form</field>
|
|
<field name="model">res.company</field>
|
|
<field name="inherit_id" ref="base.view_company_form"/>
|
|
<field name="arch" type="xml">
|
|
<group string="Configuration" position="before">
|
|
<group string="Logos">
|
|
<field name="logo_ids" nolabel="1">
|
|
<tree editable="top">
|
|
<field name="name"/>
|
|
<field name="image"/>
|
|
<field name="is_default"/>
|
|
</tree>
|
|
</field>
|
|
</group>
|
|
</group>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|