Skip to content

Commit

Permalink
fix FHIR conversion for specimen
Browse files Browse the repository at this point in the history
  • Loading branch information
angelathe committed Nov 4, 2024
1 parent 355b9ae commit 7ec6bc2
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,15 @@
{% endif -%}
{% elsif comp.procedure.participant.participantRole.id.displayName -%}
{% assign specValue = comp.procedure.participant.participantRole.id.displayName -%}
{% elsif entry.organizer.component.procedure.participant.participantRole.playingEntity.code.displayName -%}
{% assign specValue = comp.procedure.participant.participantRole.playingEntity.code.displayName -%}
{% elsif comp.procedure.participant.participantRole.playingEntity.code.originalText._ %}
{% assign specValue = comp.procedure.participant.participantRole.playingEntity.code.originalText._ -%}
{% elsif comp.procedure.participant.participantRole.playingEntity.code.displayName -%}
{% assign specValue = comp.procedure.participant.participantRole.playingEntity.code.displayName -%}
{% else -%}
{% assign specValue = "None" -%}
{% endif -%}
{% else -%}
{% assign specValue = "None" -%}
{% endif -%}
{% endif -%}
{% endfor-%}
Expand Down

0 comments on commit 7ec6bc2

Please sign in to comment.