Merge pull request #38061 from frappe/mergify/bp/version-15-hotfix/pr-38055
fix(customer): contact creation for companies (backport #38055, #38060)
This commit is contained in:
commit
6ab2f83a61
@ -15,6 +15,7 @@ from frappe.model.mapper import get_mapped_doc
|
|||||||
from frappe.model.naming import set_name_by_naming_series, set_name_from_naming_options
|
from frappe.model.naming import set_name_by_naming_series, set_name_from_naming_options
|
||||||
from frappe.model.utils.rename_doc import update_linked_doctypes
|
from frappe.model.utils.rename_doc import update_linked_doctypes
|
||||||
from frappe.utils import cint, cstr, flt, get_formatted_email, today
|
from frappe.utils import cint, cstr, flt, get_formatted_email, today
|
||||||
|
from frappe.utils.deprecations import deprecated
|
||||||
from frappe.utils.user import get_users_with_role
|
from frappe.utils.user import get_users_with_role
|
||||||
|
|
||||||
from erpnext.accounts.party import get_dashboard_info, validate_party_accounts # noqa
|
from erpnext.accounts.party import get_dashboard_info, validate_party_accounts # noqa
|
||||||
@ -303,20 +304,22 @@ class Customer(TransactionBase):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@deprecated
|
||||||
def create_contact(contact, party_type, party, email):
|
def create_contact(contact, party_type, party, email):
|
||||||
"""Create contact based on given contact name"""
|
"""Create contact based on given contact name"""
|
||||||
contact = contact.split(" ")
|
first, middle, last = parse_full_name(contact)
|
||||||
|
doc = frappe.get_doc(
|
||||||
contact = frappe.get_doc(
|
|
||||||
{
|
{
|
||||||
"doctype": "Contact",
|
"doctype": "Contact",
|
||||||
"first_name": contact[0],
|
"first_name": first,
|
||||||
"last_name": len(contact) > 1 and contact[1] or "",
|
"middle_name": middle,
|
||||||
|
"last_name": last,
|
||||||
|
"is_primary_contact": 1,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
contact.append("email_ids", dict(email_id=email, is_primary=1))
|
doc.append("email_ids", dict(email_id=email, is_primary=1))
|
||||||
contact.append("links", dict(link_doctype=party_type, link_name=party))
|
doc.append("links", dict(link_doctype=party_type, link_name=party))
|
||||||
contact.insert()
|
return doc.insert()
|
||||||
|
|
||||||
|
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
@ -636,14 +639,28 @@ def get_credit_limit(customer, company):
|
|||||||
|
|
||||||
|
|
||||||
def make_contact(args, is_primary_contact=1):
|
def make_contact(args, is_primary_contact=1):
|
||||||
contact = frappe.get_doc(
|
values = {
|
||||||
{
|
"doctype": "Contact",
|
||||||
"doctype": "Contact",
|
"is_primary_contact": is_primary_contact,
|
||||||
"first_name": args.get("customer_name"),
|
"links": [{"link_doctype": args.get("doctype"), "link_name": args.get("name")}],
|
||||||
"is_primary_contact": is_primary_contact,
|
}
|
||||||
"links": [{"link_doctype": args.get("doctype"), "link_name": args.get("name")}],
|
if args.customer_type == "Individual":
|
||||||
}
|
first, middle, last = parse_full_name(args.get("customer_name"))
|
||||||
)
|
values.update(
|
||||||
|
{
|
||||||
|
"first_name": first,
|
||||||
|
"middle_name": middle,
|
||||||
|
"last_name": last,
|
||||||
|
}
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
values.update(
|
||||||
|
{
|
||||||
|
"company_name": args.get("customer_name"),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
contact = frappe.get_doc(values)
|
||||||
|
|
||||||
if args.get("email_id"):
|
if args.get("email_id"):
|
||||||
contact.add_email(args.get("email_id"), is_primary=True)
|
contact.add_email(args.get("email_id"), is_primary=True)
|
||||||
if args.get("mobile_no"):
|
if args.get("mobile_no"):
|
||||||
@ -710,3 +727,13 @@ def get_customer_primary_contact(doctype, txt, searchfield, start, page_len, fil
|
|||||||
.where((dlink.link_name == customer) & (con.name.like(f"%{txt}%")))
|
.where((dlink.link_name == customer) & (con.name.like(f"%{txt}%")))
|
||||||
.run()
|
.run()
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def parse_full_name(full_name: str) -> tuple[str, str | None, str | None]:
|
||||||
|
"""Parse full name into first name, middle name and last name"""
|
||||||
|
names = full_name.split()
|
||||||
|
first_name = names[0]
|
||||||
|
middle_name = " ".join(names[1:-1]) if len(names) > 2 else None
|
||||||
|
last_name = names[-1] if len(names) > 1 else None
|
||||||
|
|
||||||
|
return first_name, middle_name, last_name
|
||||||
|
@ -10,7 +10,11 @@ from frappe.utils import flt
|
|||||||
|
|
||||||
from erpnext.accounts.party import get_due_date
|
from erpnext.accounts.party import get_due_date
|
||||||
from erpnext.exceptions import PartyDisabled, PartyFrozen
|
from erpnext.exceptions import PartyDisabled, PartyFrozen
|
||||||
from erpnext.selling.doctype.customer.customer import get_credit_limit, get_customer_outstanding
|
from erpnext.selling.doctype.customer.customer import (
|
||||||
|
get_credit_limit,
|
||||||
|
get_customer_outstanding,
|
||||||
|
parse_full_name,
|
||||||
|
)
|
||||||
from erpnext.tests.utils import create_test_contact_and_address
|
from erpnext.tests.utils import create_test_contact_and_address
|
||||||
|
|
||||||
test_ignore = ["Price List"]
|
test_ignore = ["Price List"]
|
||||||
@ -373,6 +377,22 @@ class TestCustomer(FrappeTestCase):
|
|||||||
|
|
||||||
frappe.db.set_single_value("Selling Settings", "cust_master_name", "Customer Name")
|
frappe.db.set_single_value("Selling Settings", "cust_master_name", "Customer Name")
|
||||||
|
|
||||||
|
def test_parse_full_name(self):
|
||||||
|
first, middle, last = parse_full_name("John")
|
||||||
|
self.assertEqual(first, "John")
|
||||||
|
self.assertEqual(middle, None)
|
||||||
|
self.assertEqual(last, None)
|
||||||
|
|
||||||
|
first, middle, last = parse_full_name("John Doe")
|
||||||
|
self.assertEqual(first, "John")
|
||||||
|
self.assertEqual(middle, None)
|
||||||
|
self.assertEqual(last, "Doe")
|
||||||
|
|
||||||
|
first, middle, last = parse_full_name("John Michael Doe")
|
||||||
|
self.assertEqual(first, "John")
|
||||||
|
self.assertEqual(middle, "Michael")
|
||||||
|
self.assertEqual(last, "Doe")
|
||||||
|
|
||||||
|
|
||||||
def get_customer_dict(customer_name):
|
def get_customer_dict(customer_name):
|
||||||
return {
|
return {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user