summaryrefslogtreecommitdiff
path: root/templates/demo/packing_list.html
blob: 2af7f7216a3a3a5e7e76bd956b96926d72ec3eb9 (plain)
  1. <body bgcolor=ffffff>
  2. <table width="100%">
  3. <?lsmb INCLUDE letterhead.html ?>
  4. <tr>
  5. <td width=10>&nbsp;</td>
  6. <th colspan=3>
  7. <h4>P A C K I N G &nbsp;&nbsp; L I S T</h4>
  8. </th>
  9. </tr>
  10. <tr>
  11. <td>&nbsp;</td>
  12. <td>
  13. <table width=100% cellspacing=0 cellpadding=0>
  14. <tr bgcolor=000000>
  15. <th width=50% align=left><font color=ffffff>Ship To:</th>
  16. <th width="50%">&nbsp;</th>
  17. </tr>
  18. <tr valign=top>
  19. <td><?lsmb shiptoname ?>
  20. <br><?lsmb shiptoaddress1 ?>
  21. <?lsmb IF shiptoaddress2 ?>
  22. <br><?lsmb shiptoaddress2 ?>
  23. <?lsmb END ?>
  24. <br><?lsmb shiptocity ?>
  25. <?lsmb IF shiptostate ?>
  26. , <?lsmb shiptostate ?>
  27. <?lsmb END ?>
  28. <?lsmb shiptozipcode ?>
  29. <?lsmb IF shiptocountry ?>
  30. <br><?lsmb shiptocountry ?>
  31. <?lsmb END ?>
  32. </td>
  33. <td>
  34. <?lsmb IF shiptocontact ?>
  35. <br>Attn: <?lsmb shiptocontact ?>
  36. <?lsmb END ?>
  37. <?lsmb IF shiptophone ?>
  38. <br>Tel: <?lsmb shiptophone ?>
  39. <?lsmb END ?>
  40. <?lsmb IF shiptofax ?>
  41. <br>Fax: <?lsmb shiptofax ?>
  42. <?lsmb END ?>
  43. <?lsmb shiptoemail ?>
  44. </td>
  45. </tr>
  46. </table>
  47. </td>
  48. </tr>
  49. <tr height=5></tr>
  50. <tr>
  51. <td>&nbsp;</td>
  52. <td>
  53. <table width=100% border=1>
  54. <tr>
  55. <th width=17% align=left>Invoice #</th>
  56. <th width=17% align=left>Order #</th>
  57. <th width=17% align=left>Date</th>
  58. <th width=17% align=left nowrap>Contact</th>
  59. <?lsmb IF warehouse ?>
  60. <th width=17% align=left>Warehouse</th>
  61. <?lsmb END ?>
  62. <th width=17% align=left>Shipping Point</th>
  63. <th width=15% align=left>Ship via</th>
  64. </tr>
  65. <tr>
  66. <td><?lsmb invnumber ?>&nbsp;</td>
  67. <td><?lsmb ordnumber ?>&nbsp;</td>
  68. <?lsmb IF shippingdate ?>
  69. <td><?lsmb shippingdate ?></td>
  70. <?lsmb ELSE ?>
  71. <td><?lsmb transdate ?></td>
  72. <?lsmb END ?>
  73. <td><?lsmb employee ?>&nbsp;</td>
  74. <?lsmb IF warehouse ?>
  75. <td><?lsmb warehouse ?>&nbsp;</td>
  76. <?lsmb END ?>
  77. <td><?lsmb shippingpoint ?>&nbsp;</td>
  78. <td><?lsmb shipvia ?>&nbsp;</td>
  79. </tr>
  80. </table>
  81. </td>
  82. </tr>
  83. <tr>
  84. <td>&nbsp;</td>
  85. <td>
  86. <table width="100%">
  87. <tr bgcolor=000000>
  88. <th align=left><font color=ffffff>Item</th>
  89. <th align=left><font color=ffffff>Number</th>
  90. <th align=left><font color=ffffff>Description</th>
  91. <th align=left><font color=ffffff>Serial #</th>
  92. <th>&nbsp;</th>
  93. <th><font color=ffffff>Qty</th>
  94. <th><font color=ffffff>Ship</th>
  95. <th>&nbsp;</th>
  96. </tr>
  97. <?lsmb FOREACH number ?>
  98. <?lsmb loop_count = loop.count - 1 ?>
  99. <tr valign=top>
  100. <td><?lsmb runningnumber.${loop_count} ?></td>
  101. <td><?lsmb number.${loop_count} ?></td>
  102. <td><?lsmb description.${loop_count} ?></td>
  103. <td><?lsmb serialnumber.${loop_count} ?></td>
  104. <td><?lsmb deliverydate.${loop_count} ?></td>
  105. <td align=right><?lsmb qty.${loop_count} ?></td>
  106. <td align=right><?lsmb ship.${loop_count} ?></td>
  107. <td><?lsmb unit.${loop_count} ?></td>
  108. </tr>
  109. <?lsmb END ?>
  110. </table>
  111. </td>
  112. </tr>
  113. <tr>
  114. <td>&nbsp;</td>
  115. <td><hr noshade></td>
  116. </tr>
  117. <?lsmb IF notes ?>
  118. <tr>
  119. <td>&nbsp;</td>
  120. <td>
  121. <table width="100%">
  122. <tr valign=top>
  123. <td>Notes</td>
  124. <td><?lsmb notes ?></td>
  125. </tr>
  126. </table>
  127. </td>
  128. </tr>
  129. <?lsmb END ?>
  130. <tr>
  131. <td>&nbsp;</td>
  132. <td>
  133. <table width="100%">
  134. <tr valign=top>
  135. <td width="70%"><font size=-3>
  136. Items returned are subject to
  137. a 10% restocking charge. A return authorization must be obtained
  138. from <?lsmb company ?> before goods are returned. Returns must be shipped
  139. prepaid and properly insured. <?lsmb company ?> will not be responsible
  140. for damages during transit.
  141. </font>
  142. </td>
  143. <td width="30%">
  144. X <hr noshade>
  145. </td>
  146. </tr>
  147. </table>
  148. </td>
  149. </tr>
  150. </table>
  151. </body>
  152. </html>