We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f732ee commit a883022Copy full SHA for a883022
1 file changed
omod/src/main/java/org/bahmni/module/hip/web/service/FHIRResourceMapper.java
@@ -304,7 +304,7 @@ public String getCustomDisplayStringForChiefComplaint(Set<Obs> groupMembers) {
304
if(childObs.getConcept().getName().getName().equals(Config.CHIEF_COMPLAINT_CODED.getValue()))
305
chiefComplaintCoded = childObs.getValueCoded().getDisplayString();
306
if(childObs.getConcept().getName().getName().equals(Config.SIGN_SYMPTOM_DURATION.getValue()))
307
- signOrSymptomDuration = childObs.getValueNumeric().toString();
+ signOrSymptomDuration = String.valueOf(Math.round(childObs.getValueNumeric()));
308
if(childObs.getConcept().getName().getName().equals(Config.CHIEF_COMPLAINT_DURATION.getValue()))
309
chiefComplaintDuration = childObs.getValueCoded().getDisplayString();
310
}
0 commit comments