From f4958e657e44513595b2194519df6b4950b9213c Mon Sep 17 00:00:00 2001 From: Mojtaba-z Date: Tue, 9 Dec 2025 09:02:33 +0330 Subject: [PATCH] fix - search of quotas dashboard --- apps/product/services/quota_dashboard_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/product/services/quota_dashboard_service.py b/apps/product/services/quota_dashboard_service.py index b6fbfda..97efa58 100644 --- a/apps/product/services/quota_dashboard_service.py +++ b/apps/product/services/quota_dashboard_service.py @@ -26,7 +26,7 @@ class QuotaDashboardService: ) # filter queryset (transactions & items) by date - if start_date and end_date: + if (start_date and end_date) or query_string: org_quota_stats = DynamicSearchService( queryset=org_quota_stats, start=start_date,