예제 #1
0
def send_message(subject="Website Query", message="", sender="", status="Open"):
	from frappe.www.contact import send_message as website_send_message

	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)

	opportunity = frappe.get_doc(
		dict(
			doctype="Opportunity",
			opportunity_from="Customer" if customer else "Lead",
			status="Open",
			title=subject,
			contact_email=sender,
			to_discuss=message,
		)
	)

	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"
예제 #2
0
def send_message(subject="Website Query",
                 message="",
                 sender="",
                 status="Open"):
    from frappe.www.contact import send_message as website_send_message
    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='{email_id}'""".format(email_id=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)

    opportunity = frappe.get_doc(
        dict(doctype='Opportunity',
             enquiry_from='Customer' if customer else 'Lead',
             status='Open',
             title=subject,
             to_discuss=message))

    if customer:
        opportunity.customer = customer[0][0]
    elif lead:
        opportunity.lead = lead
    else:
        opportunity.lead = 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"
예제 #3
0
def send_message(subject="Website Query", message="", sender="", status="Open"):
	from frappe.www.contact import send_message as website_send_message
	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)

	opportunity = frappe.get_doc(dict(
		doctype ='Opportunity',
		opportunity_from = 'Customer' if customer else 'Lead',
		status = 'Open',
		title = subject,
		contact_email = sender,
		to_discuss = message
	))

	if customer:
		opportunity.customer = customer[0][0]
	elif lead:
		opportunity.lead = lead
	else:
		opportunity.lead = 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"
예제 #4
0
파일: utils.py 프로젝트: mbauskar/erpnext
def send_message(subject="Website Query", message="", sender="", status="Open"):
    from frappe.www.contact import send_message as website_send_message

    website_send_message(subject, message, sender)

    comm = frappe.get_doc(
        {
            "doctype": "Communication",
            "subject": subject,
            "content": message,
            "sender": sender,
            "sent_or_received": "Received",
        }
    )
    comm.insert(ignore_permissions=True)

    return "okay"
예제 #5
0
파일: utils.py 프로젝트: Lewinta/erpnext-v7
def send_message(subject="Website Query",
                 message="",
                 sender="",
                 status="Open"):
    from frappe.www.contact import send_message as website_send_message
    lead = customer = None

    website_send_message(subject, message, sender)

    customer = frappe.db.get_value('Contact', dict(email_id=sender),
                                   'customer')
    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)

    opportunity = frappe.get_doc(
        dict(doctype='Opportunity',
             enquiry_from='Customer' if customer else 'Lead',
             status='Open',
             title=subject,
             to_discuss=message))

    if customer:
        opportunity.customer = customer
    else:
        opportunity.lead = 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"
예제 #6
0
def send_message(subject="Website Query",
                 message="",
                 sender="",
                 status="Open"):
    from frappe.www.contact import send_message as website_send_message

    website_send_message(subject, message, sender)

    comm = frappe.get_doc({
        "doctype": "Communication",
        "subject": subject,
        "content": message,
        "sender": sender,
        "sent_or_received": "Received"
    })
    comm.insert(ignore_permissions=True)

    return "okay"
예제 #7
0
def send_message(subject="Website Query", message="", sender="", status="Open"):
	from frappe.www.contact import send_message as website_send_message
	lead = customer = None

	website_send_message(subject, message, sender)

	customer = frappe.db.get_value('Contact', dict(email_id=sender), 'customer')
	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)

	opportunity = frappe.get_doc(dict(
		doctype='Opportunity',
		enquiry_from = 'Customer' if customer else 'Lead',
		status = 'Open',
		title = subject,
		to_discuss=message
	))

	if customer:
		opportunity.customer = customer
	else:
		opportunity.lead = 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"
예제 #8
0
def send_message(subject="Website Query",
                 message="",
                 sender="",
                 status="Open",
                 source="",
                 repair=""):
    from frappe.www.contact import send_message as website_send_message
    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)

    opportunity = frappe.get_doc(
        dict(doctype='Opportunity',
             opportunity_from='Customer' if customer else 'Lead',
             status='Open',
             title=subject,
             contact_email=sender,
             to_discuss=message))

    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)

# quickrepair: add items from webpage
    if (source == 'Web Repair Item' and repair != ''):
        opportunity_item = frappe.get_doc(
            dict(doctype='Opportunity Item', item_code=repair, qty=1))
        opportunity.with_items = 1
        opportunity.append("items", opportunity_item)
        opportunity.insert(ignore_permissions=True)
    else:
        opportunity.insert(ignore_permissions=True)
# quickrepair: add items from webpage

    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"