fix: proper quoting in sql queries
This commit is contained in:
parent
7e555d3d8c
commit
a90e7e32a4
@ -881,11 +881,11 @@ def get_default_contact(doctype, name):
|
|||||||
"""
|
"""
|
||||||
SELECT dl.parent, c.is_primary_contact, c.is_billing_contact
|
SELECT dl.parent, c.is_primary_contact, c.is_billing_contact
|
||||||
FROM `tabDynamic Link` dl
|
FROM `tabDynamic Link` dl
|
||||||
INNER JOIN tabContact c ON c.name = dl.parent
|
INNER JOIN `tabContact` c ON c.name = dl.parent
|
||||||
WHERE
|
WHERE
|
||||||
dl.link_doctype=%s AND
|
dl.link_doctype=%s AND
|
||||||
dl.link_name=%s AND
|
dl.link_name=%s AND
|
||||||
dl.parenttype = "Contact"
|
dl.parenttype = 'Contact'
|
||||||
ORDER BY is_primary_contact DESC, is_billing_contact DESC
|
ORDER BY is_primary_contact DESC, is_billing_contact DESC
|
||||||
""",
|
""",
|
||||||
(doctype, name),
|
(doctype, name),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user