Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge to Master: LCSD-7540, 7304, 6363, 7524, 6492, 6596 (Updating 6363) #4342

Merged
merged 7 commits into from
Dec 19, 2024
2 changes: 1 addition & 1 deletion cllc-public-app/Controllers/SpecialEventsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ public IActionResult GetPolicePendingReview([FromQuery] int pageIndex = 0, [From
}

// Application Status == Pending Review && Police Decision == Under Review
var result = GetPagedSepSummaries($"_adoxio_policejurisdictionid_value eq {userAccount._adoxioPolicejurisdictionidValue} and adoxio_policeapproval eq {(int?)ApproverStatus.PendingReview} and statuscode ne {(int?)EventStatus.Cancelled}", pageIndex, pageSize, sort, sortdir);
var result = GetPagedSepSummaries($"_adoxio_policejurisdictionid_value eq {userAccount._adoxioPolicejurisdictionidValue} and adoxio_policeapproval eq {(int?)ApproverStatus.PendingReview} and statuscode ne {(int?)EventStatus.Cancelled} and statuscode ne {(int?)EventStatus.Denied}", pageIndex, pageSize, sort, sortdir);

return new JsonResult(result);

Expand Down
Loading