|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<odoo> |
| 3 | + <record id="crm_lead_view_form_inherit" model="ir.ui.view"> |
| 4 | + <field name="name">crm.lead.view.form.inherit</field> |
| 5 | + <field name="model">crm.lead</field> |
| 6 | + <field name="inherit_id" ref="crm.crm_lead_view_form"></field> |
| 7 | + <field name="arch" type="xml"> |
| 8 | + <xpath expr="//page[@name='lead']" position="after"> |
| 9 | + <page name="details" string="Contact details" invisible="type == 'lead'"> |
| 10 | + <!-- Address Details Section --> |
| 11 | + <field name="address_detail_ids" |
| 12 | + string="Address Detail" |
| 13 | + readonly="partner_id == False" |
| 14 | + context="{'default_parent_id': partner_id, 'default_company_type': 'company', 'default_type': 'other', 'default_lead_id': id}"> |
| 15 | + <list editable="bottom"> |
| 16 | + <field name="is_selected" widget="boolean" nolabel="1" options="{'on_change':1}"/> |
| 17 | + <field name="name" readonly="1"/> |
| 18 | + <field name="phone" readonly="1"/> |
| 19 | + <field name="mobile" readonly="1"/> |
| 20 | + <field name="email" readonly="1"/> |
| 21 | + <field name="user_id" readonly="1"/> |
| 22 | + <field name="street" readonly="1"/> |
| 23 | + <field name="city" readonly="1"/> |
| 24 | + <field name="state_id" readonly="1"/> |
| 25 | + <field name="country_id" readonly="1"/> |
| 26 | + <field name="company_id" readonly="1"/> |
| 27 | + </list> |
| 28 | + <form> |
| 29 | + <sheet> |
| 30 | + <group> |
| 31 | + <group> |
| 32 | + <field name="name" string="Contact Name" placeholder="e.g. New Address"/> |
| 33 | + <label for="street" string="Address"/> |
| 34 | + <div class="o_address_format" name="div_address"> |
| 35 | + <field name="street" placeholder="Street..." class="o_address_street"/> |
| 36 | + <field name="street2" placeholder="Street 2..." class="o_address_street"/> |
| 37 | + <field name="city" placeholder="City" class="o_address_city"/> |
| 38 | + <field name="state_id" class="o_address_state" placeholder="State" options="{'no_open': True, 'no_quick_create': True}" context="{'country_id': country_id, 'default_country_id': country_id, 'zip': zip}"/> |
| 39 | + <field name="zip" placeholder="ZIP" class="o_address_zip"/> |
| 40 | + <field name="country_id" placeholder="Country" class="o_address_country" options='{"no_open": True, "no_create": True}'/> |
| 41 | + </div> |
| 42 | + </group> |
| 43 | + <group> |
| 44 | + <field name="email" widget="email"/> |
| 45 | + <field name="phone" widget="phone"/> |
| 46 | + <field name="mobile" widget="phone"/> |
| 47 | + <field name="company_id" invisible="1"/> |
| 48 | + </group> |
| 49 | + </group> |
| 50 | + </sheet> |
| 51 | + </form> |
| 52 | + </field> |
| 53 | + |
| 54 | + <!-- Contact Details Section --> |
| 55 | + <field name="contact_detail_ids" |
| 56 | + string="Contact Detail" |
| 57 | + domain="[('parent_id', '=', selected_address_id), ('type', '=', 'contact')]" |
| 58 | + readonly="selected_address_id == False" |
| 59 | + context="{'default_parent_id': selected_address_id, 'default_company_type': 'person', 'default_type': 'contact', 'default_lead_id': id}"> |
| 60 | + <list editable="bottom"> |
| 61 | + <field name="name"/> |
| 62 | + <field name="function"/> |
| 63 | + <field name="phone"/> |
| 64 | + <field name="email"/> |
| 65 | + <field name="user_id"/> |
| 66 | + <field name="street"/> |
| 67 | + <field name="city"/> |
| 68 | + <field name="state_id"/> |
| 69 | + <field name="country_id"/> |
| 70 | + <field name="company_id"/> |
| 71 | + </list> |
| 72 | + <form> |
| 73 | + <sheet> |
| 74 | + <group> |
| 75 | + <group> |
| 76 | + <field name="name" string="Contact Name" required="True" placeholder="e.g. New Address"/> |
| 77 | + <field name="title" options="{'no_open': True}" placeholder="e.g. Mr."/> |
| 78 | + <field name="function" placeholder="e.g. Sales Director"/> |
| 79 | + </group> |
| 80 | + <group> |
| 81 | + <field name="email" widget="email"/> |
| 82 | + <field name="phone" widget="phone"/> |
| 83 | + <field name="mobile" widget="phone"/> |
| 84 | + <field name="company_id" invisible="1"/> |
| 85 | + </group> |
| 86 | + </group> |
| 87 | + </sheet> |
| 88 | + </form> |
| 89 | + </field> |
| 90 | + </page> |
| 91 | + </xpath> |
| 92 | + </field> |
| 93 | + </record> |
| 94 | +</odoo> |
0 commit comments