fix: Unable to 'Get Suppliers' using tags in Request for Quotation (#41626)

This commit is contained in:
rohitwaghchaure
2024-05-24 13:03:57 +05:30
committed by GitHub
parent b6350c86d1
commit 683c1f04c8

View File

@@ -513,7 +513,7 @@ erpnext.buying.RequestforQuotationController = class RequestforQuotationControll
method: "frappe.desk.doctype.tag.tag.get_tagged_docs", method: "frappe.desk.doctype.tag.tag.get_tagged_docs",
args: { args: {
doctype: "Supplier", doctype: "Supplier",
tag: args.tag, tag: "%" + args.tag + "%",
}, },
callback: load_suppliers, callback: load_suppliers,
}); });