use of org.ehrbase.fhirbridge.ehr.converter.specific.observationlab.LaborergebnisObservationConverter in project fhir-bridge by ehrbase.
the class DiagnosticReportLabCompositionConverter method convertLaborergebnis.
private List<LaborergebnisObservation> convertLaborergebnis(DiagnosticReport diagnosticReport) {
List<LaborergebnisObservation> laborergebnisObservationList = new ArrayList<>();
for (Resource resource : diagnosticReport.getContained()) {
if (resource.getResourceType() == ResourceType.Observation) {
LaborergebnisObservation laborergebnisObservation = new LaborergebnisObservationConverter().convert((Observation) resource);
injectSchlussfolgerung(laborergebnisObservation, diagnosticReport);
laborergebnisObservationList.add(laborergebnisObservation);
}
}
return laborergebnisObservationList;
}
Aggregations