We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 266efbf commit 5577772Copy full SHA for 5577772
1 file changed
omod/src/main/java/org/bahmni/module/hip/web/service/FHIRResourceMapper.java
@@ -165,6 +165,7 @@ public DocumentReference mapToDocumentDocumentReference(Obs obs) {
165
DocumentReference documentReference = new DocumentReference();
166
documentReference.setId(obs.getUuid());
167
documentReference.setStatus(Enumerations.DocumentReferenceStatus.CURRENT);
168
+ documentReference.setDescription(obs.getComment());
169
List<DocumentReference.DocumentReferenceContentComponent> contents = new ArrayList<>();
170
try {
171
List<Attachment> attachments = getAttachments(obs);
0 commit comments