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 e88a98759d0..6ab5048082e 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.js @@ -555,7 +555,10 @@ erpnext.buying.RequestforQuotationController = class RequestforQuotationControll doctype: "Supplier", order_by: "name", fields: ["name"], - filters: [["Supplier", "supplier_group", "=", args.supplier_group]], + filters: [ + ["Supplier", "supplier_group", "=", args.supplier_group], + ["disabled", "=", 0], + ], }, callback: load_suppliers, });