Implement tender workflows and dashboard integration
continuous-integration/drone/push Build encountered an error

This commit is contained in:
AmirReza Jamali
2026-07-14 11:12:09 +03:30
parent ce170f9bc8
commit 72881df210
29 changed files with 1820 additions and 159 deletions
+2 -2
View File
@@ -35,7 +35,7 @@ class HomeService {
Future<Result<FeedbackStatResponse>> getFeedbackStats() async {
final result = await _networkManager.makeRequest(
HomeApi.statsCompany,
HomeApi.statsCustomer,
(json) => FeedbackStatResponse.fromJson(json),
method: 'GET',
);
@@ -44,7 +44,7 @@ class HomeService {
Future<Result<Map<String, dynamic>>> checkUnreadNotifications() async {
final result = await _networkManager.makeRequest(
HomeApi.checkUnreadNotifications,
HomeApi.checkUnreadNotifications,
(json) => json,
method: 'GET',
);