summaryrefslogtreecommitdiff
path: root/templates/demo/bin_list.html
blob: d9400d45dd66248286c16d23d48eca4f19f8ec55 (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>B I N &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 align=left width="50%"><font color=ffffff>From</th>
  16. <th align=left width="50%"><font color=ffffff>Ship To</th>
  17. </tr>
  18. <tr valign=top>
  19. <td><?lsmb name ?>
  20. <br><?lsmb address1 ?>
  21. <?lsmb IF address2 ?>
  22. <br><?lsmb address2 ?>
  23. <?lsmb END ?>
  24. <br><?lsmb city ?>
  25. <?lsmb IF state ?>
  26. , <?lsmb state ?>
  27. <?lsmb END ?>
  28. <?lsmb zipcode ?>
  29. <?lsmb IF country ?>
  30. <?lsmb country ?>
  31. <?lsmb END ?>
  32. <br>
  33. <?lsmb IF contact ?>
  34. <br>Attn: <?lsmb contact ?>
  35. <?lsmb END ?>
  36. <?lsmb IF vendorphone ?>
  37. <br>Tel: <?lsmb vendorphone ?>
  38. <?lsmb END ?>
  39. <?lsmb IF vendorfax ?>
  40. <br>Fax: <?lsmb vendorfax ?>
  41. <?lsmb END ?>
  42. <?lsmb IF email ?>
  43. <br><?lsmb email ?>
  44. <?lsmb END ?>
  45. </td>
  46. <td><?lsmb shiptoname ?>
  47. <br><?lsmb shiptoaddress1 ?>
  48. <?lsmb IF shiptoaddress2 ?>
  49. <br><?lsmb shiptoaddress2 ?>
  50. <?lsmb END ?>
  51. <br><?lsmb shiptocity ?>
  52. <?lsmb IF shiptostate ?>
  53. , <?lsmb shiptostate ?>
  54. <?lsmb END ?>
  55. <?lsmb shiptozipcode ?>
  56. <?lsmb IF shiptocountry ?>
  57. <?lsmb shiptocountry ?>
  58. <?lsmb END ?>
  59. <br>
  60. <?lsmb IF shiptocontact ?>
  61. <br>Attn: <?lsmb shiptocontact ?>
  62. <?lsmb END ?>
  63. <?lsmb IF shiptophone ?>
  64. <br>Tel: <?lsmb shiptophone ?>
  65. <?lsmb END ?>
  66. <?lsmb IF shiptofax ?>
  67. <br>Fax: <?lsmb shiptofax ?>
  68. <?lsmb END ?>
  69. </td>
  70. </tr>
  71. </table>
  72. </td>
  73. </tr>
  74. <tr height=5></tr>
  75. <tr>
  76. <td>&nbsp;</td>
  77. <td>
  78. <table width=100% border=1>
  79. <tr>
  80. <th width=17% align=left nowrap>Order #</th>
  81. <th width=17% align=left nowrap>Date</th>
  82. <th width=17% align=left nowrap>Contact</th>
  83. <?lsmb IF warehouse ?>
  84. <th width=17% align=left nowrap>Warehouse</th>
  85. <?lsmb END ?>
  86. <th width=17% align=left>Shipping Point</th>
  87. <th width=15% align=left>Ship via</th>
  88. </tr>
  89. <tr>
  90. <td><?lsmb ordnumber ?>&nbsp;</td>
  91. <?lsmb IF shippingdate ?>
  92. <td><?lsmb shippingdate ?></td>
  93. <?lsmb ELSE ?>
  94. <td><?lsmb orddate ?></td>
  95. <?lsmb END ?>
  96. <td><?lsmb employee ?>&nbsp;</td>
  97. <?lsmb IF warehouse ?>
  98. <td><?lsmb warehouse ?></td>
  99. <?lsmb END ?>
  100. <td><?lsmb shippingpoint ?>&nbsp;</td>
  101. <td><?lsmb shipvia ?>&nbsp;</td>
  102. </tr>
  103. </table>
  104. </td>
  105. </tr>
  106. <tr>
  107. <td>&nbsp;</td>
  108. <td>
  109. <table width="100%">
  110. <tr bgcolor=000000>
  111. <th align=left><font color=ffffff>Item</th>
  112. <th align=left><font color=ffffff>Number</th>
  113. <th align=left><font color=ffffff>Description</th>
  114. <th><font color=ffffff>Serialnumber</th>
  115. <th>&nbsp;</th>
  116. <th><font color=ffffff>Qty</th>
  117. <th><font color=ffffff>Recd</th>
  118. <th>&nbsp;</th>
  119. <th><font color=ffffff>Bin</th>
  120. </tr>
  121. <?lsmb FOREACH number ?>
  122. <?lsmb loop_count = loop.count - 1 ?>
  123. <tr valign=top>
  124. <td><?lsmb runningnumber.${loop_count} ?></td>
  125. <td><?lsmb number.${loop_count} ?></td>
  126. <td><?lsmb description.${loop_count} ?></td>
  127. <td><?lsmb serialnumber.${loop_count} ?></td>
  128. <td><?lsmb deliverydate.${loop_count} ?></td>
  129. <td align=right><?lsmb qty.${loop_count} ?></td>
  130. <td align=right><?lsmb ship.${loop_count} ?></td>
  131. <td><?lsmb unit.${loop_count} ?></td>
  132. <td><?lsmb bin.${loop_count} ?></td>
  133. </tr>
  134. <?lsmb END ?>
  135. </table>
  136. </td>
  137. </tr>
  138. <tr>
  139. <td>&nbsp;</td>
  140. <td><hr noshade></td>
  141. </tr>
  142. </table>
  143. </body>
  144. </html>