mirror of
https://github.com/frappe/erpnext.git
synced 2026-04-12 11:25:09 +00:00
Merge pull request #51141 from aerele/fix/filter-disabled-suppliers
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