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.
28 lines
1.1 KiB
28 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<record id="view_res_partner_filter" model="ir.ui.view">
|
|
<field name="inherit_id" ref="base.view_res_partner_filter" />
|
|
<field name="model">res.partner</field>
|
|
<field type="xml" name="arch">
|
|
<filter name="type_person" position="before">
|
|
<filter
|
|
string="All partners"
|
|
name="type_contact"
|
|
domain="['|', ('is_company', '=', True), ('type', '=', 'contact')]"
|
|
/>
|
|
</filter>
|
|
<!-- Default type_person also contains invoice and delivery
|
|
addresses for companies (and persons). -->
|
|
<filter name="type_person" position="attributes">
|
|
<attribute
|
|
name="domain"
|
|
>[('is_company', '=', False), ('type', '=', 'contact')]</attribute>
|
|
</filter>
|
|
<filter name="type_company" position="attributes">
|
|
<attribute name="string">Organisations</attribute>
|
|
</filter>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|