summaryrefslogtreecommitdiff
path: root/templates/Default-work_order.html
blob: 38fadacfeffaa5fe60435b642626b620a4786c72 (plain)
  1. <body bgcolor=ffffff>
  2. <table width=100%>
  3. <%include letterhead.html%>
  4. <tr>
  5. <td width=10>&nbsp;</td>
  6. <th colspan=3>
  7. <h4>W O R K &nbsp;&nbsp; O R D E R</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 align=left width=50%><font color=ffffff>To</th>
  16. <th align=left width=50%><font color=ffffff>Ship To</th>
  17. </tr>
  18. <tr valign=top>
  19. <td><%name%>
  20. <br><%address1%>
  21. <%if address2%>
  22. <br><%address2%>
  23. <%end address2%>
  24. <br><%city%>
  25. <%if state%>
  26. , <%state%>
  27. <%end state%>
  28. <%zipcode%>
  29. <%if country%>
  30. <br><%country%>
  31. <%end country%>
  32. <br>
  33. <%if contact%>
  34. <br>Attn: <%contact%>
  35. <%end contact%>
  36. <%if customerphone%>
  37. <br>Tel: <%customerphone%>
  38. <%end customerphone%>
  39. <%if customerfax%>
  40. <br>Fax: <%customerfax%>
  41. <%end customerfax%>
  42. <%if email%>
  43. <br><%email%>
  44. <%end email%>
  45. </td>
  46. <td><%shiptoname%>
  47. <br><%shiptoaddress1%>
  48. <%if shiptoaddress2%>
  49. <br><%shiptoaddress2%>
  50. <%end shiptoaddress2%>
  51. <br><%shiptocity%>
  52. <%if shiptostate%>
  53. , <%shiptostate%>
  54. <%end shiptostate%>
  55. <%shiptozipcode%>
  56. <%if shiptocountry%>
  57. <br><%shiptocountry%>
  58. <%end shiptocountry%>
  59. <br>
  60. <%if shiptocontact%>
  61. <br><%shiptocontact%>
  62. <%end shiptocontact%>
  63. <%if shiptophone%>
  64. <br>Tel: <%shiptophone%>
  65. <%end shiptophone%>
  66. <%if shiptofax%>
  67. <br>Fax: <%shiptofax%>
  68. <%end shiptofax%>
  69. <%if shiptoemail%>
  70. <br><%shiptoemail%>
  71. <%end shiptoemail%>
  72. </td>
  73. </tr>
  74. </table>
  75. </td>
  76. </tr>
  77. <tr height=5></tr>
  78. <tr>
  79. <td>&nbsp;</td>
  80. <td>
  81. <table width=100% border=1>
  82. <tr>
  83. <th width=17% align=left nowrap>Order #</th>
  84. <th width=17% align=left>Order Date</th>
  85. <th width=17% align=left>Required by</th>
  86. <th width=17% align=left nowrap>Salesperson</th>
  87. <th width=17% align=left nowrap>Shipping Point</th>
  88. <th width=15% align=left nowrap>Ship Via</th>
  89. </tr>
  90. <tr>
  91. <td><%ordnumber%></td>
  92. <td><%orddate%></td>
  93. <td><%reqdate%></td>
  94. <td><%employee%></td>
  95. <td><%shippingpoint%>&nbsp;</td>
  96. <td><%shipvia%>&nbsp;</td>
  97. </tr>
  98. </table>
  99. </td>
  100. </tr>
  101. <tr>
  102. <td>&nbsp;</td>
  103. <td>
  104. <table width=100%>
  105. <tr bgcolor=000000>
  106. <th align=right><font color=ffffff>Item</th>
  107. <th align=left><font color=ffffff>Number</th>
  108. <th align=left><font color=ffffff>Description</th>
  109. <th><font color=ffffff>Qt'y</th>
  110. <th>&nbsp;</th>
  111. <th><font color=ffffff>Bin</th>
  112. <th><font color=ffffff>Serial #</th>
  113. </tr>
  114. <%foreach number%>
  115. <tr valign=top>
  116. <td align=right><%runningnumber%>.</td>
  117. <td><%number%></td>
  118. <td><%description%></td>
  119. <td align=right><%qty%></td>
  120. <td><%unit%></td>
  121. <td><%bin%></td>
  122. <td><%serialnumber%></td>
  123. </tr>
  124. <%end number%>
  125. <tr>
  126. <td colspan=7><hr noshade></td>
  127. </tr>
  128. </table>
  129. </td>
  130. </tr>
  131. <tr>
  132. <td>&nbsp;</td>
  133. <%if notes%>
  134. <td><%notes%></td>
  135. <%end notes%>
  136. </tr>
  137. </table>
  138. </body>
  139. </html>