Merge pull request #55619 from frappe/mergify/bp/version-16-hotfix/pr-55536

fix: allow CRM Deal as Quotation To for CRM integration (backport #55536)
This commit is contained in:
shahzeelahmed
2026-06-05 00:01:31 +05:30
committed by GitHub

View File

@@ -16,7 +16,7 @@ frappe.ui.form.on("Quotation", {
frm.set_query("quotation_to", function () { frm.set_query("quotation_to", function () {
return { return {
filters: { filters: {
name: ["in", ["Customer", "Lead", "Prospect"]], name: ["in", ["Customer", "Lead", "Prospect", "CRM Deal"]],
}, },
}; };
}); });