From 683c1f04c83297aacd3298e4ff286fedccaacdaa Mon Sep 17 00:00:00 2001 From: rohitwaghchaure Date: Fri, 24 May 2024 13:03:57 +0530 Subject: [PATCH] fix: Unable to 'Get Suppliers' using tags in Request for Quotation (#41626) --- .../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 6b10df885c3..816d76b788c 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, });