Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-06-18 17:31:53 +03:00
parent f8c0fe338a
commit 149cea778e
8 changed files with 505 additions and 7 deletions

View File

@@ -109,7 +109,8 @@ function normalizeFilters (filters = {}) {
}
function hasPrimaryFilter (filters = {}) {
return (Array.isArray(filters.urun_ilk_grubu) && filters.urun_ilk_grubu.length > 0) ||
return (Array.isArray(filters.product_code) && filters.product_code.length > 0) ||
(Array.isArray(filters.urun_ilk_grubu) && filters.urun_ilk_grubu.length > 0) ||
(Array.isArray(filters.urun_ana_grubu) && filters.urun_ana_grubu.length > 0)
}