Merge pull request #55536 from frappe/fix-quotation-to-crm-deal

fix: allow CRM Deal as Quotation To for CRM integration
This commit is contained in:
ruthra kumar
2026-06-04 11:51:48 +05:30
committed by GitHub

View File

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