From ca855e8ab81214e6d05e53db023d53554fb5e62c Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 13:09:15 +0530 Subject: [PATCH] fix: Unable to 'Get Suppliers' using tags in Request for Quotation (backport #41626) (#41627) fix: Unable to 'Get Suppliers' using tags in Request for Quotation (#41626) (cherry picked from commit 683c1f04c83297aacd3298e4ff286fedccaacdaa) Co-authored-by: rohitwaghchaure --- .../doctype/request_for_quotation/request_for_quotation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js index 272d077b1e3..b8689d29a56 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js @@ -513,7 +513,7 @@ erpnext.buying.RequestforQuotationController = class RequestforQuotationControll method: "frappe.desk.doctype.tag.tag.get_tagged_docs", args: { doctype: "Supplier", - tag: args.tag, + tag: "%" + args.tag + "%", }, callback: load_suppliers, });