Skip to content

Commit cb2c20e

Browse files
committed
[ADD] crm_contact_details: Dynamic address & contact management in CRM
- Added 'Address Details' section to display and manage sub-branch locations of the selected customer. - Added 'Contact Details' section to manage contact persons linked to selected addresses. - Ensured contacts are dynamically shown/hidden based on address selection. - New addresses and contacts auto-link to the correct parent and type.
1 parent 4c650f3 commit cb2c20e

File tree

6 files changed

+232
-0
lines changed

6 files changed

+232
-0
lines changed

crm_contact_details/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
from . import models

crm_contact_details/__manifest__.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
{
5+
'name': 'CRM contact details',
6+
'version': '1.0',
7+
'depends': ['base', 'crm'],
8+
'description': """
9+
It provides crm contact details
10+
""",
11+
'data': [
12+
'views/crm_lead_views.xml',
13+
],
14+
'installable': True,
15+
'application': True,
16+
'license': 'LGPL-3',
17+
}
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
from . import crm_lead
5+
from . import res_partner
+77
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
from odoo import api, fields, models
5+
6+
7+
class Lead(models.Model):
8+
_inherit = 'crm.lead'
9+
10+
address_detail_ids = fields.Many2many(
11+
'res.partner',
12+
string="Address Details",
13+
domain="[('parent_id', '=', partner_id), ('type', '=', 'other')]",
14+
store="True",
15+
)
16+
contact_detail_ids = fields.Many2many(
17+
'res.partner', 'crm_lead_contact_detail_default_rel', 'lead_id', 'partner_id',
18+
string="Contact Details",
19+
compute="_compute_contact_details",
20+
inverse="_inverse_contact_details",
21+
domain="[('parent_id', '=', selected_address_id), ('type', '=', 'contact')]",
22+
store="True",
23+
)
24+
selected_address_id = fields.Many2one(
25+
'res.partner',
26+
string="Selected Address",
27+
compute="_compute_single_address_selection",
28+
store="True",
29+
)
30+
31+
@api.onchange('partner_id')
32+
def _onchange_address_details(self):
33+
for lead in self:
34+
lead.address_detail_ids = None
35+
lead.contact_detail_ids = None
36+
lead.selected_address_id = False
37+
if lead.partner_id:
38+
addresses = lead.partner_id.child_ids.filtered(lambda p: p.type == 'other')
39+
addresses.is_selected = False
40+
for address in addresses:
41+
for contact in address.child_ids.filtered(lambda c: c.type == 'contact'):
42+
contact.show_in_contact_detail = True
43+
44+
@api.depends('address_detail_ids.child_ids', 'address_detail_ids.child_ids.show_in_contact_detail')
45+
def _compute_contact_details(self):
46+
for lead in self:
47+
if lead.address_detail_ids:
48+
lead.contact_detail_ids = lead.address_detail_ids.child_ids.filtered(lambda c: c.type == 'contact' and c.show_in_contact_detail)
49+
else:
50+
lead.contact_detail_ids = None
51+
52+
def _inverse_contact_details(self):
53+
for lead in self:
54+
all_contacts = lead.address_detail_ids.child_ids.filtered(lambda c: c.type == 'contact')
55+
# Remove contacts
56+
removed_contacts = all_contacts - lead.contact_detail_ids
57+
for contact in removed_contacts:
58+
if contact.show_in_contact_detail:
59+
contact.show_in_contact_detail = False
60+
# Add contacts
61+
for contact in lead.contact_detail_ids:
62+
if not contact.show_in_contact_detail:
63+
contact.show_in_contact_detail = True
64+
65+
@api.depends('address_detail_ids.is_selected')
66+
def _compute_single_address_selection(self):
67+
"""Ensure only one address is selected at a time."""
68+
for lead in self:
69+
selected_addresses = lead.address_detail_ids.filtered(lambda p: p.is_selected)
70+
if selected_addresses:
71+
latest_address = selected_addresses[-1]
72+
for address in lead.address_detail_ids:
73+
if address != latest_address:
74+
address.is_selected = False
75+
lead.selected_address_id = latest_address
76+
else:
77+
lead.selected_address_id = False
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# -*- coding: utf-8 -*-
2+
# Part of Odoo. See LICENSE file for full copyright and licensing details.
3+
4+
from odoo import api, fields, models
5+
6+
7+
class Partner(models.Model):
8+
_inherit = 'res.partner'
9+
10+
is_selected = fields.Boolean(string="Selected Address", default=False)
11+
show_in_contact_detail = fields.Boolean(string="Show in Contact Detail", default=True)
12+
13+
def default_get(self, fields_list):
14+
defaults = super().default_get(fields_list)
15+
lead_id = self.env.context.get('default_lead_id')
16+
type = self.env.context.get('default_type')
17+
company_type = self.env.context.get('default_company_type')
18+
parent_id = self.env.context.get('default_parent_id')
19+
if lead_id:
20+
defaults.update(
21+
parent_id = parent_id,
22+
type = type,
23+
company_type = company_type,
24+
user_id = self.env.user.id,
25+
)
26+
return defaults
27+
28+
@api.model_create_multi
29+
def create(self, vals_list):
30+
partners = super().create(vals_list)
31+
for partner, vals in zip(partners, vals_list):
32+
if partner.type == 'contact' and partner.parent_id:
33+
vals['parent_id'] = partner.parent_id.id
34+
partner._fields_sync(vals)
35+
return partners
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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

Comments
 (0)