Code: Shipment Details: Dimension
Assistance requested on how to add Shipment Details: Dimension of box to invoice once shipments are created.
I tried the following, but no values are returned. <xsl:value-of select="//Order/Shipment/Dimensions" />
Thanks!
-
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)
Please sign in to leave a comment.
Comments
1 comment