Skip to content

Commit

Permalink
ServiceID changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ravishanigarapu committed Nov 18, 2024
1 parent a6869b5 commit a16065c
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/main/environment/common_ci.properties
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ servicePointID: 235
parkingPlaceID: 233
providerServiceMapID: 1261
vanID: 220
serviceID: 4
serviceID: 9
providerID: 500
appId: 85696
authKey: 8BfRcBAGkTQkbQ6
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ servicePointID= 235
parkingPlaceID= 233
providerServiceMapID= 1261
vanID= 220
serviceID= 4
serviceID= 9
providerID= 500
appId= 85696
authKey= 8BfRcBAGkTQkbQ6
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_example.properties
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ servicePointID= 235
parkingPlaceID= 233
providerServiceMapID= 1261
vanID= 220
serviceID= 4
serviceID= 9
providerID= 500
appId= 85696
authKey= 8BfRcBAGkTQkbQ6
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ servicePointID= 235
parkingPlaceID= 233
providerServiceMapID= 1261
vanID= 220
serviceID= 4
serviceID= 9
providerID= 500
appId= 85696
authKey= 8BfRcBAGkTQkbQ6
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_test.properties
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ servicePointID: 235
parkingPlaceID: 233
providerServiceMapID: 1261
vanID: 220
serviceID: 4
serviceID: 9
providerID: 500
appId: 85696
authKey: 8BfRcBAGkTQkbQ6
Expand Down
2 changes: 1 addition & 1 deletion src/main/environment/common_uat.properties
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ servicePointID: 235
parkingPlaceID: 233
providerServiceMapID: 1261
vanID: 220
serviceID: 4
serviceID: 9
providerID: 500
appId: 85696
authKey: 8BfRcBAGkTQkbQ6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private String getANC_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws IEMRExc
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -245,7 +245,7 @@ private String getCancerScreening_PrintData(BeneficiaryFlowStatus benFlowOBJ) {
new Gson().toJson(cSNurseServiceImpl.getCancerExaminationImageAnnotationCasesheet(
benFlowOBJ.getBeneficiaryRegID(), benFlowOBJ.getBenVisitCode())));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -262,7 +262,7 @@ private String getGenOPD_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws Exce
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -279,7 +279,7 @@ private String getFP_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws Exceptio
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -299,7 +299,7 @@ private String getNNI_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws Excepti
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -319,7 +319,7 @@ private String getCAC_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws Excepti
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -336,7 +336,7 @@ private String getNCDcare_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws IEM
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -353,7 +353,7 @@ private String getPNC_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws IEMRExc
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -370,7 +370,7 @@ private String getQC_PrintData(BeneficiaryFlowStatus benFlowOBJ) {
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -387,7 +387,7 @@ private String getCovid19_PrintData(BeneficiaryFlowStatus benFlowOBJ) throws IEM
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand All @@ -404,7 +404,7 @@ private String getNCDScreening_PrintData(BeneficiaryFlowStatus benFlowOBJ) throw
caseSheetData.put("BeneficiaryData",
getBenDetails(benFlowOBJ.getBenFlowID(), benFlowOBJ.getBeneficiaryRegID()));

caseSheetData.put("serviceID", 4);
caseSheetData.put("serviceID", 9);

return caseSheetData.toString();
}
Expand Down Expand Up @@ -539,7 +539,7 @@ public String getBenPreviousVisitDataForCaseRecord(String comingRequest) throws
// List<Short> flagList = new ArrayList<>();
// flagList.add((short) 9);
// flagList.add((short) 3);
List<Integer> psmIDList = providerServiceMappingRepo.getProviderServiceMapIdForServiceID((short) 4);
List<Integer> psmIDList = providerServiceMappingRepo.getProviderServiceMapIdForServiceID((short) 9);
psmIDList.add(0);
ArrayList<Object[]> resultList = beneficiaryFlowStatusRepo.getBenPreviousHistory(obj.getBeneficiaryRegID(),
psmIDList);
Expand Down

0 comments on commit a16065c

Please sign in to comment.