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>
|
|
<!-- Inherited Crm Form View-->
|
|
<record id="crm_lead_view_form" model="ir.ui.view">
|
|
<field name="name">crm.lead.view.form.inherit.volunteers.donors.management</field>
|
|
<field name="model">crm.lead</field>
|
|
<field name="inherit_id" ref="crm.crm_lead_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//page[@name='lead']" position="after">
|
|
<page string="Volunteer Details">
|
|
<group>
|
|
<field name="volunteer_type_id"/>
|
|
<field name="volunteer_skill_ids"
|
|
widget="many2many_tags"
|
|
options="{'color_field': 'color'}"/>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
<xpath expr="//page[@name='lead']" position="after">
|
|
<page string="Donor Details">
|
|
<group>
|
|
<field name="donor_type_id"/>
|
|
</group>
|
|
</page>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|