From 519dc0b95893f5f4d198003eee496c496224d063 Mon Sep 17 00:00:00 2001 From: shahzeelahmed Date: Tue, 2 Jun 2026 12:39:29 +0530 Subject: [PATCH] fix: include CRM Deal in `quotation to` filters --- erpnext/selling/doctype/quotation/quotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation.js b/erpnext/selling/doctype/quotation/quotation.js index a692aa3e3ca..921f19cc127 100644 --- a/erpnext/selling/doctype/quotation/quotation.js +++ b/erpnext/selling/doctype/quotation/quotation.js @@ -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"]], }, }; });