Skip to content

Commit

Permalink
Fix/prequalification fix qa (#1075)
Browse files Browse the repository at this point in the history
* pagare report charges

* FSF-33 (#1058)

* Fix/prequalification fix (#1070)

* FSF-33

* FBR-PREQUALIFICATIONS QUERY

* FBR-PREQUALIFICATIONS QUERY

* FBR-PREQUALIFICATIONS QUERY
  • Loading branch information
BrianMuhimbura authored Aug 27, 2024
1 parent 946c2d8 commit 585725f
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,11 @@ private String buildSqlStringFromBlacklistCriteria(final SearchParameters search


if (agencyId != null) {
extraCriteria += " and individualOffice.agency_id = ? ";
if (StringUtils.equalsIgnoreCase(groupingType, "individual")) {
extraCriteria += " and individualOffice.agency_id = ? ";
}else {
extraCriteria += " and ma.id = ? ";
}
paramList.add(agencyId);
}

Expand Down

0 comments on commit 585725f

Please sign in to comment.