Skip to content

Commit

Permalink
fix GetStatisctics part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabruno91 committed Mar 18, 2024
1 parent 4db4d08 commit 9fc81e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public virtual async Task<GetStatisticsOutput> GetStatistics(GetStatisticsInput
if (_session.LoggedUserPerson.OrganizationId.HasValue)
queryMapRequests = queryMapRequests.DataOwnership(new List<int>() { _session.LoggedUserPerson.OrganizationId.Value });
}
queryMapRequests = queryMapRequests.Where(x => x.Status != MapRequestStatusType.Canceled);
queryMapRequests = queryMapRequests.Where(x => x.StatusString != MapRequestStatusType.Canceled.ToString());
//////////////////////

//Alerts///////////
Expand Down

0 comments on commit 9fc81e7

Please sign in to comment.