Code: Shipment Details: Dimension

Comments

1 comment

  • Avatar
    Dan Pankau

    You could try:

        <xsl:for-each select="//Shipment[Status = 'Processed']/Package">
            <xsl:value-of select="Dimensions/Length" /><xsl:text>x</xsl:text>  
            <xsl:value-of select="Dimensions/Width" /><xsl:text>x</xsl:text>  
            <xsl:value-of select="Dimensions/Height" />
        </xsl:for-each>    

    (borrowed this code from the package level details template)

    0
    Comment actions Permalink

Please sign in to leave a comment.