Skip to content

Commit 02ee6c9

Browse files
authored
Merge pull request #2127 from makombe/transferOutFacility
(fix):Display trasfer out facility
2 parents 1ffa92d + 368a99c commit 02ee6c9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

omod/src/main/java/org/openmrs/module/kenyaemr/web/controller/KenyaemrCoreRestController.java

+1
Original file line numberDiff line numberDiff line change
@@ -2418,6 +2418,7 @@ public Object getPatientSummary(@RequestParam("patientUuid") String patientUuid)
24182418
if (facilityUuid != null && !facilityUuid.isEmpty()) {
24192419
Location location = locationService.getLocationByUuid(facilityUuid);
24202420
transferOutFacilityName = (location != null) ? location.getName() : facilityUuid;
2421+
patientSummary.put("transferOutFacility", transferOutFacilityName);
24212422
} else {
24222423
transferOutFacilityName = "";
24232424
}

0 commit comments

Comments
 (0)