Skip to content

Commit

Permalink
Merge pull request #1561 from bcgov/fix/GenderRuleUT
Browse files Browse the repository at this point in the history
Fix/UpdateRefugeeEnrolmentCriteria
  • Loading branch information
arcshiftsolutions authored Jan 24, 2025
2 parents 2e7fff8 + 1269037 commit 3eeabc1
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1105,10 +1105,7 @@ public DownloadableReportResponse generateRefugeeEnrolmentHeadcountsAndFteReport
var schoolOpt = restUtils.getSchoolBySchoolID(result.getSchoolID());
if(schoolOpt.isPresent() &&
(schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.STANDARD.getCode()) ||
schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.ALT_PROGS.getCode()) ||
schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.YOUTH.getCode()) ||
schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.SHORT_PRP.getCode()) ||
schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.LONG_PRP.getCode()))) {
schoolOpt.get().getFacilityTypeCode().equalsIgnoreCase(FacilityTypeCodes.ALT_PROGS.getCode()))) {
List<String> csvRowData = prepareRefugeeEnrolmentFteData(result, schoolOpt.get());
csvPrinter.printRecord(csvRowData);
}
Expand Down

0 comments on commit 3eeabc1

Please sign in to comment.