Skip to content

Commit

Permalink
HL7 Order to MWL - ORM^O01 : Modality and Scheduled Procedure Step ID…
Browse files Browse the repository at this point in the history
… values not transformed correctly by XSL #4538
  • Loading branch information
vrindanayak committed Jul 29, 2024
1 parent d9774c6 commit 1e626f3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dcm4chee-arc-conf-data/src/main/resources/hl7-order2dcm.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
<xsl:with-param name="spsStatus" select="$spsStatus"/>
<xsl:with-param name="spsStartDateTime" select="$spsStartDateTime"/>
<xsl:with-param name="spsScheduledPhysician" select="$spsScheduledPhysician"/>
<xsl:with-param name="obr" select="OBR[1]"/>
</xsl:apply-templates>
<xsl:apply-templates select="OBX"/>
<!-- Admission ID, Issuer -->
Expand Down Expand Up @@ -385,6 +386,7 @@
<xsl:param name="spsStatus"/>
<xsl:param name="spsStartDateTime"/>
<xsl:param name="spsScheduledPhysician"/>
<xsl:param name="obr"/>
<!-- Study Instance UID -->
<xsl:call-template name="attr">
<xsl:with-param name="tag" select="'0020000D'"/>
Expand Down Expand Up @@ -427,13 +429,13 @@
<xsl:call-template name="attr">
<xsl:with-param name="tag" select="'00080060'"/>
<xsl:with-param name="vr" select="'CS'"/>
<xsl:with-param name="val" select="OBR/field[24]/text()"/>
<xsl:with-param name="val" select="$obr/field[24]"/>
</xsl:call-template>
<!-- Scheduled Procedure Step ID -->
<xsl:call-template name="attr">
<xsl:with-param name="tag" select="'00400009'"/>
<xsl:with-param name="vr" select="'SH'"/>
<xsl:with-param name="val" select="OBR/field[20]/text()"/>
<xsl:with-param name="val" select="$obr/field[20]"/>
</xsl:call-template>
<!-- Scheduled Station AE Title -->
<xsl:call-template name="attr">
Expand Down

0 comments on commit 1e626f3

Please sign in to comment.