fix: include CRM Deal in quotation to filters

This commit is contained in:
shahzeelahmed
2026-06-02 12:39:29 +05:30
parent 85be72a403
commit 519dc0b958

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"]],
},
};
});