ORDER NUMBER ON ENVELOPES

Answered

Comments

3 comments

  • Avatar
    Bill K.

    Thank you for the suggestion Larry.  I am going to send you an email, as I have a template already put together that will do just this for you.  Please keep an eye out for the email.

    thanks again for the suggestion

    0
    Comment actions Permalink
  • Avatar
    KennyK

    Please post this template as I would like to have the order number printed on USPS and FedEx package labels.

    Thanks!

    0
    Comment actions Permalink
  • Avatar
    Bill K.

    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>

    0
    Comment actions Permalink

Please sign in to leave a comment.