Skip to content

Commit

Permalink
Merge pull request #42 from zucisystems-dev/bugs/grouping_eocId_split…
Browse files Browse the repository at this point in the history
…ting_002

Bug in sor grouping eoc id change
  • Loading branch information
Sanjeeya-Velayutham-ZS0029 authored Jun 2, 2023
2 parents ea4b667 + 6587f6a commit dd3650e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public Map<String,List<Integer>> SplitByEocId(Jdbi jdbi, String sorItem) {
Map<String,List<Integer>> eocObjectMap=new HashMap<>();

if(Objects.equals(sorItem,"patient_eoc")){
String inputQuery=episodeOfCoverage.getValue().replace(";"," ").concat("AND sor_item_name IN ('patient_eoc' )");
String inputQuery=episodeOfCoverage.getValue().replace(";"," ").concat("AND sor_item_name IN ('patient_eoc' ) group by predicted_value,paper_no");
List<Map<String, Object>> eocIdRequestInfo=queryExecutor(jdbi,sorItem,inputQuery);
if (!eocIdRequestInfo.isEmpty()) {

Expand Down

0 comments on commit dd3650e

Please sign in to comment.