brotherton-erpnext/erpnext/templates/utils.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.5 KiB
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2013-09-10 08:16:15 +00:00
# License: GNU General Public License v3. See license.txt
2014-10-21 10:46:30 +00:00
2019-01-22 18:58:37 +00:00
import frappe
2013-09-11 13:28:20 +00:00
2014-02-14 10:17:51 +00:00
@frappe.whitelist(allow_guest=True)
2013-09-11 13:28:20 +00:00
def send_message(subject="Website Query", message="", sender="", status="Open"):
from frappe.www.contact import send_message as website_send_message
2022-03-28 13:22:46 +00:00
lead = customer = None
website_send_message(subject, message, sender)
customer = frappe.db.sql(
"""select distinct dl.link_name from `tabDynamic Link` dl
left join `tabContact` c on dl.parent=c.name where dl.link_doctype='Customer'
and c.email_id = %s""",
sender,
)
if not customer:
lead = frappe.db.get_value("Lead", dict(email_id=sender))
if not lead:
new_lead = frappe.get_doc(
dict(doctype="Lead", email_id=sender, lead_name=sender.split("@")[0].title())
).insert(ignore_permissions=True)
2022-03-28 13:22:46 +00:00
opportunity = frappe.get_doc(
dict(
doctype="Opportunity",
opportunity_from="Customer" if customer else "Lead",
status="Open",
title=subject,
contact_email=sender,
2022-03-28 13:22:46 +00:00
)
)
if customer:
opportunity.party_name = customer[0][0]
elif lead:
opportunity.party_name = lead
else:
opportunity.party_name = new_lead.name
opportunity.insert(ignore_permissions=True)
comm = frappe.get_doc(
{
"doctype": "Communication",
"subject": subject,
"content": message,
"sender": sender,
"sent_or_received": "Received",
"reference_doctype": "Opportunity",
"reference_name": opportunity.name,
}
)
comm.insert(ignore_permissions=True)
return "okay"