Skip to content

Commit

Permalink
Merge pull request #29 from SoftmedTanzania/bug_fix_on_ICD10_channel
Browse files Browse the repository at this point in the history
Bug Fix in ICD10 update/creation sync
  • Loading branch information
cozej4 committed Oct 9, 2021
2 parents b2837a0 + a318672 commit 91bd65e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void onReceive(Object msg) throws Exception {

HdrICD10Request hdrICD10Request = mapper.readValue(((MediatorHTTPRequest) msg).getBody(), HdrICD10Request.class);

HdrResponse hdrResponse = new HdrResponse(HttpStatus.SC_OK, hdrICD10Request.getIcd10SubCategoryId(), "Success", "ICD10");
HdrResponse hdrResponse = new HdrResponse(HttpStatus.SC_OK, hdrICD10Request.getIcd10CodeCategoryId(), "Success", "ICD10");

finishRequest = new FinishRequest(new Gson().toJson(hdrResponse), "text/json", HttpStatus.SC_OK);
} catch (Exception e) {
Expand Down

0 comments on commit 91bd65e

Please sign in to comment.