summaryrefslogtreecommitdiff
path: root/templates/demo/request_quotation.html
blob: 827fdf1a17932414154b9a8a839c2fa706cbcff1 (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>R E Q U E S T &nbsp;&nbsp; F O R &nbsp;&nbsp; Q U O T A T I O N</h4>
  8. </th>
  9. </tr>
  10. <tr>
  11. <td>&nbsp;</td>
  12. <td>
  13. <table width="100%">
  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><?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. <br><?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. </td>
  43. <td><?lsmb shiptoname ?>
  44. <br><?lsmb shiptoaddress1 ?>
  45. <?lsmb IF shiptoaddress2 ?>
  46. <br><?lsmb shiptoaddr2 ?>
  47. <?lsmb END ?>
  48. <br><?lsmb shiptocity ?>
  49. <?lsmb IF shiptostate ?>
  50. , <?lsmb shiptostate ?>
  51. <?lsmb END ?>
  52. <?lsmb shiptozipcode ?>
  53. <?lsmb IF shiptocountry ?>
  54. <br><?lsmb shiptocountry ?>
  55. <?lsmb END ?>
  56. <br>
  57. <?lsmb IF shiptocontact ?>
  58. <br>Attn: <?lsmb shiptocontact ?>
  59. <?lsmb END ?>
  60. <?lsmb IF shiptophone ?>
  61. <br>Tel: <?lsmb shiptophone ?>
  62. <?lsmb END ?>
  63. <?lsmb IF shiptofax ?>
  64. <br>Fax: <?lsmb shiptofax ?>
  65. <?lsmb END ?>
  66. </td>
  67. </tr>
  68. </table>
  69. </td>
  70. </tr>
  71. <tr height=5></tr>
  72. <tr>
  73. <td>&nbsp;</td>
  74. <td>
  75. <table width=100% border=1>
  76. <tr>
  77. <th width=17% align=left>RFQ #</th>
  78. <th width=17% align=left>Date</th>
  79. <th width=17% align=left>Required by</th>
  80. <th width=17% align=left>Contact</th>
  81. <th width=17% align=left>Shipping Point</th>
  82. <th width=15% align=left>Ship via</th>
  83. </tr>
  84. <tr>
  85. <td><?lsmb quonumber ?></td>
  86. <td><?lsmb quodate ?></td>
  87. <td><?lsmb reqdate ?>&nbsp;</td>
  88. <td><?lsmb employee ?></td>
  89. <td><?lsmb shippingpoint ?>&nbsp;</td>
  90. <td><?lsmb shipvia ?>&nbsp;</td>
  91. </tr>
  92. </table>
  93. </td>
  94. </tr>
  95. <tr height="10"></tr>
  96. <tr>
  97. <td>&nbsp;</td>
  98. <td>Please provide price and delivery time for the following items:</td>
  99. </tr>
  100. <tr height="10"></tr>
  101. <tr>
  102. <td>&nbsp;</td>
  103. <td>
  104. <table width="100%">
  105. <tr>
  106. <th align=right>Item</th>
  107. <th align=left>Number</th>
  108. <th align=left><font color=ffffff>Description</th>
  109. <th>Qt'y</th>
  110. <th>&nbsp;</th>
  111. <th>Delivery</th>
  112. <th>Unit Price</th>
  113. <th>Extended</th>
  114. </tr>
  115. <?lsmb FOREACH number ?>
  116. <?lsmb loop_count = loop.count - 1 ?>
  117. <tr valign=top>
  118. <td align=right><?lsmb runningnumber.${loop_count} ?>.</td>
  119. <td><?lsmb number.${loop_count} ?></td>
  120. <td><?lsmb description.${loop_count} ?></td>
  121. <td align=right><?lsmb qty.${loop_count} ?></td>
  122. <td><?lsmb unit.${loop_count} ?></td>
  123. </tr>
  124. <?lsmb END ?>
  125. <tr>
  126. <td colspan=8><hr noshade></td>
  127. </tr>
  128. </table>
  129. </td>
  130. </tr>
  131. <?lsmb IF notes ?>
  132. <tr>
  133. <td>&nbsp;</td>
  134. <td>
  135. <table width="100%">
  136. <tr valign=top>
  137. <td>Notes</td>
  138. <td><?lsmb notes ?></td>
  139. </tr>
  140. </table>
  141. </td>
  142. </tr>
  143. <?lsmb END ?>
  144. </table>
  145. </body>
  146. </html>