Skip to content

Commit

Permalink
Merge pull request #38647 from barredterra/copy-emails-to-customer
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra committed Feb 4, 2024
2 parents 407045a + 50cff65 commit 617d923
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions erpnext/selling/doctype/customer/customer.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,7 @@ def on_update(self):

if self.flags.is_new_doc:
self.link_lead_address_and_contact()
self.copy_communication()

self.update_customer_groups()

Expand Down Expand Up @@ -291,6 +292,17 @@ def link_lead_address_and_contact(self):
linked_doc.append("links", dict(link_doctype="Customer", link_name=self.name))
linked_doc.save(ignore_permissions=self.flags.ignore_permissions)

def copy_communication(self):
if not self.lead_name or not frappe.db.get_single_value(
"CRM Settings", "carry_forward_communication_and_comments"
):
return

from erpnext.crm.utils import copy_comments, link_communications

copy_comments("Lead", self.lead_name, self)
link_communications("Lead", self.lead_name, self)

def validate_name_with_customer_group(self):
if frappe.db.exists("Customer Group", self.name):
frappe.throw(
Expand Down

0 comments on commit 617d923

Please sign in to comment.