fix: name 'link_link_doctype' is not defined

This commit is contained in:
Rohit Waghchaure 2019-10-10 14:17:06 +05:30
parent 38ac7f7350
commit 4494d46020

View File

@ -17,7 +17,7 @@ def get_last_interaction(contact=None, lead=None):
if link.link_doctype == 'Customer': if link.link_doctype == 'Customer':
last_issue = get_last_issue_from_customer(link.link_name) last_issue = get_last_issue_from_customer(link.link_name)
query_condition += "(`reference_doctype`=%s AND `reference_name`=%s) OR" query_condition += "(`reference_doctype`=%s AND `reference_name`=%s) OR"
values += [link_link_doctype, link_link_name] values += [link.link_doctype, link.link_name]
if query_condition: if query_condition:
# remove extra appended 'OR' # remove extra appended 'OR'