ORDER NUMBER ON ENVELOPES
AnsweredPlease put the order number on an envelope labels. you had this before stamps bought you and I was told it was going to be added. It's been years and it has never showed up
-
Here it is per your request KennyK. If you have any further questions on the template, you can either submit us a ticket or call us at 800-952-7784. As always, Happy Shipping and thank you for being a valued customer!!!
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.interapptive.com/shipworks" extension-element-prefixes="sw">
<!-- Imports -->
<xsl:import href="System\Snippets" />
<xsl:output method="html" encoding="utf-8" />
<!-- Start of template -->
<xsl:template match="/"><xsl:apply-templates /></xsl:template>
<xsl:template match="ShipWorks">
<html>
<head>
<title>ShipWorks Template</title>
</head>
<body>
<xsl:variable name="labels" select="(//Primary | //Supplemental)/Label[@orientation = 'tall']" />
<xsl:for-each select="$labels">
<xsl:variable name="shipment" select="../../../.." />
<TemplatePartition>
<center>
<img src="{.}" style="width:384; height:576;" />
Order: <xsl:value-of select="../../../../../Number" />
</center>
</TemplatePartition>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Please sign in to leave a comment.
Comments
3 comments