Merge pull request #52307 from frappe/mergify/bp/version-15-hotfix/pr-52304

fix: populate contact fields when creating quotation from customer (backport #52304)
This commit is contained in:
Mihir Kandoi
2026-02-02 20:32:16 +05:30
committed by GitHub

View File

@@ -497,6 +497,9 @@ def _set_missing_values(source, target):
if contact:
target.contact_person = contact[0].parent
target.contact_display, target.contact_email, target.contact_mobile = frappe.get_value(
"Contact", contact[0].parent, ["full_name", "email_id", "mobile_no"]
)
@frappe.whitelist()