summaryrefslogtreecommitdiff
path: root/templates/French-sales_order.html
blob: 3bf0a7b596744b3f92362ce3330e4f5fa19d4f5b (plain)
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional">
  2. <html>
  3. <head>
  4. <title>Commande <%ordnumber%> <%name%></title>
  5. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-15">
  6. </head>
  7. <body bgcolor="ffffff">
  8. <table width="100%">
  9. <tr valign=bottom>
  10. <td width=10>&nbsp;</td>
  11. <td>
  12. <table width="100%">
  13. <tr>
  14. <td>
  15. <h4>
  16. <%company%>
  17. <br><%address%>
  18. </h4>
  19. </td>
  20. <td align=right>
  21. <h4>
  22. Tél&nbsp;: <%tel%>
  23. <br>Fax&nbsp;: <%fax%>
  24. </h4>
  25. </td>
  26. </tr>
  27. <tr>
  28. <th colspan=3>
  29. <h4>B O N&nbsp;&nbsp;&nbsp;D E&nbsp;&nbsp;&nbsp;C O M M A N D E</h4>
  30. </th>
  31. </tr>
  32. </table>
  33. <table width=100% cellspacing=0 cellpadding=0>
  34. <tr>
  35. <td align=right>
  36. <table>
  37. <tr>
  38. <th align=right>Date commande</th><td width=10>&nbsp;</td><td><%orddate%></td>
  39. </tr>
  40. <tr>
  41. <th align=right>Requis pour</th><td width=10>&nbsp;</td><td><%reqdate%></td>
  42. </tr>
  43. <tr>
  44. <th align=right>N° commande</th><td>&nbsp;</td><td><%ordnumber%></td></tr>
  45. </tr>
  46. <tr>
  47. <td>&nbsp;</td>
  48. </tr>
  49. </td>
  50. </table>
  51. </tr>
  52. <tr>
  53. <td>
  54. <table width="100%">
  55. <tr bgcolor="000000">
  56. <th align=left><font color="ffffff">Commandé par</th>
  57. <th align=left><font color="ffffff">Adresse d'envoi</th>
  58. </tr>
  59. <tr>
  60. <td><%name%>
  61. <br><%address1%>
  62. <%if address2%>
  63. <br><%address2%>
  64. <%end address2%>
  65. <br><%city%> <%state%> <%zipcode%>
  66. <%if country%>
  67. <%country%>
  68. <%end country%>
  69. </td>
  70. <td><%shiptoname%>
  71. <br><%shiptoaddress1%>
  72. <%if shiptoaddress2%>
  73. <br><%shiptoaddress2%>
  74. <%end shiptoaddress2%>
  75. <br><%shiptocity%> <%shiptostate%> <%shiptozipcode%>
  76. <%if shiptocountry%>
  77. <%shiptocountry%>
  78. <%end shiptocountry%>
  79. </td>
  80. </tr>
  81. </table>
  82. </td>
  83. </tr>
  84. <tr>
  85. <td>&nbsp;</td>
  86. </tr>
  87. <tr>
  88. <td>
  89. <table width="100%">
  90. <tr bgcolor="000000">
  91. <!-- <th align=right><font color="ffffff">N°</th> -->
  92. <th align=left><font color="ffffff"></th>
  93. <th align=left><font color="ffffff">Description</th>
  94. <th><font color="ffffff">Qté</th>
  95. <th>&nbsp;</th>
  96. <th><font color="ffffff">Prix</th>
  97. <th><font color="ffffff">Remise</th>
  98. <th><font color="ffffff">Montant</th>
  99. </tr>
  100. <%foreach number%>
  101. <tr valign=top>
  102. <!-- <td align=right><%runningnumber%>.</td>
  103. adjust the colspan if you include this to shift subtotal one to the right
  104. -->
  105. <td><%number%></td>
  106. <td><%description%></td>
  107. <td align=right><%qty%></td>
  108. <td><%unit%></td>
  109. <td align=right><%sellprice%></td>
  110. <td align=right><%discount%></td>
  111. <td align=right><%linetotal%></td>
  112. </tr>
  113. <%end number%>
  114. <tr>
  115. <td colspan=7><hr noshade></td>
  116. </tr>
  117. <tr>
  118. <%if taxincluded%>
  119. <th colspan=5 align=right>Total</th>
  120. <td colspan=2 align=right><%ordtotal%></td>
  121. <%end taxincluded%>
  122. <%if not taxincluded%>
  123. <th colspan=5 align=right>Sous-total</th>
  124. <td colspan=2 align=right><%subtotal%></td>
  125. <%end taxincluded%>
  126. </tr>
  127. <%foreach tax%>
  128. <tr>
  129. <th colspan=5 align=right><%taxdescription%></th>
  130. <td colspan=2 align=right><%tax%></td>
  131. </tr>
  132. <%end tax%>
  133. <tr>
  134. <td colspan=2>&nbsp;</td>
  135. <td colspan=5><hr noshade></td>
  136. </tr>
  137. <tr>
  138. <td colspan=3>À régler dans <b><%terms%></b> jours au plus tard</td>
  139. <th colspan=2 align=right>Total</th>
  140. <th colspan=2 align=right><%ordtotal%></th>
  141. </tr>
  142. <%if taxincluded%>
  143. <tr>
  144. <td colspan=3>Taxe comprise dans Total</td>
  145. </tr>
  146. <%end taxincluded%>
  147. <tr>
  148. <td>&nbsp;</td>
  149. </tr>
  150. </table>
  151. </td>
  152. </tr>
  153. <tr>
  154. <td>
  155. <table width="100%">
  156. <tr valign=top>
  157. <%if notes%>
  158. <td>À noter&nbsp;:</td>
  159. <td><%notes%></td>
  160. <%end notes%>
  161. <td align=right>
  162. Tous prix indiqués en <b><%currency%></b>
  163. <br><%shippingpoint%>
  164. </td>
  165. </tr>
  166. </table>
  167. </td>
  168. </tr>
  169. <tr><td>&nbsp;</td></tr>
  170. <tr>
  171. <td>
  172. <table width="100%">
  173. <tr valign=top>
  174. <td><font size=-3>
  175. <!--
  176. A 10% order cancellation fee will be applied for any special order
  177. products or products that have been customized, enhanced or
  178. upgraded at customers request.
  179. -->
  180. </font>
  181. </td>
  182. <td width=150>
  183. X <hr noshade>
  184. </td>
  185. </tr>
  186. <tr>
  187. <td colspan=5>
  188. <h6><center>N° TVA&nbsp;: &nbsp;&nbsp;Banque&nbsp;: &nbsp;&nbsp;N° de compte&nbsp;: &nbsp;&nbsp;Code SWIFT&nbsp;: </center>
  189. </h6>
  190. </td>
  191. </tr>
  192. </table>
  193. </td>
  194. </tr>
  195. </table>
  196. </td>
  197. </tr>
  198. </table>
  199. </body>
  200. </html>