<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>ProductCart Shopping Cart Software Forums : Invoice Number Printing Suggestion</title>
  <link>https://forum.productcart.com/</link>
  <description><![CDATA[This is an XML content feed of; ProductCart Shopping Cart Software Forums : Suggestions : Invoice Number Printing Suggestion]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 10 Apr 2026 19:06:16 +0000</pubDate>
  <lastBuildDate>Fri, 04 Jan 2013 23:54:40 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forum.productcart.com/RSS_post_feed.asp?TID=5397</WebWizForums:feedURL>
  <image>
   <title><![CDATA[ProductCart Shopping Cart Software Forums]]></title>
   <url>https://forum.productcart.com/forum_images/pc_logo_50.png</url>
   <link>https://forum.productcart.com/</link>
  </image>
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion : Dave,I just noticed I was a bit...]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20642.html#20642</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 04-January-2013 at 11:54pm<br /><br />Dave,<br>I just noticed I was a bit dyslexic on your name there and called you Davey. oops sorry :)<br><br>No problem on the bit of code there. Let me know if you have any trouble with it, I'll be glad to help you sort it out.<br>]]>
   </description>
   <pubDate>Fri, 04 Jan 2013 23:54:40 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20642.html#20642</guid>
  </item> 
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion : Kelly,Thank you for suppling the...]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20634.html#20634</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1595">Dayv3</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 04-January-2013 at 8:16pm<br /><br />Kelly,<br><br>Thank you for suppling the code to print the invoice number on the right hand side of<br>the page.<br><br>I have not played with the code yet, but your code will help me, and others that may have<br>the need for the same convenience, eliminate an extra step when we process our paperwork.<br><br>Thanks,<br>Dave]]>
   </description>
   <pubDate>Fri, 04 Jan 2013 20:16:39 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20634.html#20634</guid>
  </item> 
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion : Hi Davey,Hamish is right this...]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20626.html#20626</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=2">Guests</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 03-January-2013 at 8:01pm<br /><br />Hi Davey,<br><br>Hamish is right this is fairly easy.<br>I happened to have done some work in this file not too long ago and thought I could rather quickly help you out since it was still in my head.<br><br>I have an easy solution for you if you want to give it a try yourself.<br>You need to open up the pcadmin\OrdInvoice.asp page.<br>Make a back up of this file just in case!<br><br>In there look for the following line of code around line 194<br><br>&lt;font style="font-size:24px;font-weight:bold;"&gt;&lt;% If intPackingSlip &lt;&gt; "1" Then %&gt;INVOICE&lt;% Else %&gt;PACKING SLIP&lt;% End If %&gt;&lt;/font&gt;&lt;br&gt;&lt;br&gt;<br><br>you need to replace that line with the following<br><br>&lt;table&gt;<br>&lt;tr&gt;<br>&lt;td width="43%" height="24" align="center"&gt;<br>&lt;font style="font-size:24px;font-weight:bold;"&gt;&lt;% If intPackingSlip &lt;&gt; "1" Then %&gt;INVOICE&lt;BR /&gt;&lt;% Else %&gt;PACKING SLIP&lt;% End If %&gt;&lt;/font&gt;<br>&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;tr&gt;&lt;td valign="top" align="center"&gt;&lt;%=strInvoiceNum%&gt;&lt;/td&gt;&lt;/tr&gt;<br>&lt;/table&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br><br><br>Then below around line 279 look for the following piece of code<br><br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;% dim strInvoiceNum, strAlterInvoiceNum<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strAlterInvoiceNum=request.Form("AlterInvoiceNum")<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if strAlterInvoiceNum="" then<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strInvoiceNum=(scpre+int(qry_ID))<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;else<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strInvoiceNum=strAlterInvoiceNum<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;end if %&gt;<br><br>Copy (ctrl+c) and <b>CUT (ctrl+x)</b> out that piece of code and bring it up to the top of the page and place it right above the code you just added. It should now look like this.<br><br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&lt;% dim strInvoiceNum, strAlterInvoiceNum<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strAlterInvoiceNum=request.Form("AlterInvoiceNum")<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;if strAlterInvoiceNum="" then<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strInvoiceNum=(scpre+int(qry_ID))<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;else<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;strInvoiceNum=strAlterInvoiceNum<br>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;end if %&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;table&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;td width="43%" height="24" align="center"&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;font style="font-size:24px;font-weight:bold;"&gt;&lt;% If intPackingSlip &lt;&gt; "1" Then %&gt;INVOICE&lt;BR /&gt;&lt;% Else %&gt;PACKING SLIP&lt;% End If %&gt;&lt;/font&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/td&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;tr&gt;&lt;td valign="top" align="center"&gt;&lt;%=strInvoiceNum%&gt;&lt;/td&gt;&lt;/tr&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/table&gt;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;<br><br><br>Save the file and run it. You should now see the invoice number that you were asking for.<br><br>If you need any help on this please go ahead and contact me at support at wmsmerchantservices<br><br>]]>
   </description>
   <pubDate>Thu, 03 Jan 2013 20:01:04 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20626.html#20626</guid>
  </item> 
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion :    ]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20625.html#20625</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1595">Dayv3</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 03-January-2013 at 6:43pm<br /><br />]]>
   </description>
   <pubDate>Thu, 03 Jan 2013 18:43:36 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20625.html#20625</guid>
  </item> 
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion : Hi Dave, That sounds like a modification...]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20624.html#20624</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=303">Hamish</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 03-January-2013 at 6:04pm<br /><br />Hi Dave,&nbsp; That sounds like a modification that is specific to your companies particular way of working. Making a custom modification to the form would be the best route and should be very straight forward as the detail is already being printed, so the data is already available.&nbsp;]]>
   </description>
   <pubDate>Thu, 03 Jan 2013 18:04:18 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20624.html#20624</guid>
  </item> 
  <item>
   <title><![CDATA[Invoice Number Printing Suggestion : Suggestion for Early Impact,After...]]></title>
   <link>https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20623.html#20623</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forum.productcart.com/member_profile.asp?PF=1595">Dayv3</a><br /><strong>Subject:</strong> 5397<br /><strong>Posted:</strong> 03-January-2013 at 5:58pm<br /><br /><br>Suggestion for Early Impact,<br><br>After we get a sale we print two copies of the invoice.&nbsp; The first one goes in the<br>box with the order that is shipped to the customer and the second copy of the invoice<br>gets the shipping related paperwork stapled to it and then filed.<br><br>What happens is that the shipping paperwork then covers the invoice number<br>that is printed on the invoice. To compensate, we hand write the invoice number<br>above the big word invoice on the right hand side of the page, (above the "order date" box).<br><br>Would it be possible the next time you make a update to also print the invoice number<br>below the big work "invoice."&nbsp; If the number was printed with the small text used for the <br>date in the order date box, but centered under the "VOI" in invoice it would be very helpful<br>when we are doing the paperwork.<br><br>Thanks in advance,<br>Dave<br><br><br>]]>
   </description>
   <pubDate>Thu, 03 Jan 2013 17:58:37 +0000</pubDate>
   <guid isPermaLink="true">https://forum.productcart.com/invoice-number-printing-suggestion_topic5397_post20623.html#20623</guid>
  </item> 
 </channel>
</rss>