mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-14 04:15:10 +00:00
fix(buying): add disabled filter for supplier
This commit is contained in:
@@ -551,7 +551,10 @@ erpnext.buying.RequestforQuotationController = class RequestforQuotationControll
|
||||
} else if (args.supplier_group) {
|
||||
frappe.db
|
||||
.get_list("Supplier", {
|
||||
filters: { supplier_group: args.supplier_group },
|
||||
filters: {
|
||||
supplier_group: args.supplier_group,
|
||||
disabled: 0,
|
||||
},
|
||||
limit: 100,
|
||||
order_by: "name",
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user