Skip to content

Commit

Permalink
Update RadOrderQrToBundle.map
Browse files Browse the repository at this point in the history
fix fhirpath error
  • Loading branch information
oliveregger authored May 17, 2024
1 parent fc8a554 commit 0961584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions input/resources/RadOrderQrToBundle.map
Original file line number Diff line number Diff line change
Expand Up @@ -741,9 +741,9 @@ group PreviousImagingStudyResults(source item , target bundle: Bundle, target se
answer.value: string as value -> imagingStudy.description = value "description";
} "answerValueString";
item.item as item where linkId.value = 'dicomObject.sopInstanceUid' and answer.exists() -> instance.uid = (%item.answer.value) "uid";
item.item as item where linkId.value = 'dicomObject.modality' and answer.exists() -> series.modality as modality, modality.code =(%ditem.answer.value.code) "modality";
item.item as item where linkId.value = 'dicomObject.modality' and answer.exists() -> series.modality as modality, modality.code =(%item.answer.value.code) "modality";
item.item as item where linkId.value = 'dicomObject.studyInstanceUid' and answer.exists() -> imagingStudy.identifier as uid, uid.type as type, type.coding as coding, coding.system ='urn:dicom:uid', coding.code='PLAC', uid.value=(%item.answer.value) "uid";
item.item as item where linkId.value = 'dicomObject.SeriesInstanceUid' and answer.exists() -> series.uid =(%item.answer.value) "attachmentdicomSeriesInstanceUid";
item.item as item where linkId.value = 'dicomObject.acsn' and answer.exists() -> imagingStudy.identifier as acsn, acsn.type as type, type.coding as coding, coding.system ='http://terminology.hl7.org/CodeSystem/v2-0203', coding.code='ACSN', acsn.value=(%item.answer.value) "acsn";
} "supportingInfo";
}
}

0 comments on commit 0961584

Please sign in to comment.