summaryrefslogtreecommitdiff
path: root/templates/demo/pick_list.html
blob: bab639b7b74ff452bf5f48cb6a76ddd28b5ad5f0 (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 I C K &nbsp;&nbsp; L I S T</h4>
  8. </th>
  9. </tr>
  10. <tr>
  11. <td>&nbsp;</td>
  12. <td>
  13. <table width=100% callspacing=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=15% align=left>Invoice #</th>
  56. <th width=15% align=left>Order #</th>
  57. <th width=10% align=left>Date</th>
  58. <th width=15% align=left nowrap>Contact</th>
  59. <th width=15% align=left>Warehouse</th>
  60. <th width=10% align=left>Shipping Point</th>
  61. <th width=10% align=left>Ship via</th>
  62. </tr>
  63. <tr>
  64. <td><?lsmb invnumber ?>&nbsp;</td>
  65. <td><?lsmb ordnumber ?>&nbsp;</td>
  66. <?lsmb IF shippingdate ?>
  67. <td><?lsmb shippingdate ?></td>
  68. <?lsmb ELSE ?>
  69. <td><?lsmb transdate ?></td>
  70. <?lsmb END ?>
  71. <td><?lsmb employee ?>&nbsp;</td>
  72. <td><?lsmb warehouse ?>&nbsp;</td>
  73. <td><?lsmb shippingpoint ?>&nbsp;</td>
  74. <td><?lsmb shipvia ?>&nbsp;</td>
  75. </tr>
  76. </table>
  77. </td>
  78. </tr>
  79. <tr>
  80. <td>&nbsp;</td>
  81. <td>
  82. <table width="100%">
  83. <tr bgcolor=000000>
  84. <th align=left><font color=ffffff>Item</th>
  85. <th align=left><font color=ffffff>Number</th>
  86. <th align=left><font color=ffffff>Description</th>
  87. <th><font color=ffffff>Qty</th>
  88. <th><font color=ffffff>Ship</th>
  89. <th>&nbsp;</th>
  90. <th><font color=ffffff>Bin</th>
  91. </tr>
  92. <?lsmb FOREACH number ?>
  93. <?lsmb loop_count = loop.count - 1 ?>
  94. <tr valign=top>
  95. <td><?lsmb runningnumber.${loop_count} ?></td>
  96. <td><?lsmb number.${loop_count} ?></td>
  97. <td><?lsmb description.${loop_count} ?></td>
  98. <td align=right><?lsmb qty.${loop_count} ?></td>
  99. <td align=right>[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;]</td>
  100. <td><?lsmb unit.${loop_count} ?></td>
  101. <td align=right><?lsmb bin.${loop_count} ?></td>
  102. </tr>
  103. <?lsmb END ?>
  104. </table>
  105. </td>
  106. </tr>
  107. <tr>
  108. <td>&nbsp;</td>
  109. <td><hr noshade></td>
  110. </tr>
  111. </table>
  112. </body>
  113. </html>