summaryrefslogtreecommitdiff
path: root/templates/German-invoice.html
blob: d181bdae24335419d106ac9927bfc1dcef98441f (plain)
  1. <body bgcolor=ffffff>
  2. <table width=100%>
  3. <tr valign=bottom>
  4. <td width=10>&nbsp;</td>
  5. <td>
  6. <table width=100%>
  7. <tr>
  8. <td>
  9. <h4>
  10. <%company%>
  11. <br><%address%>
  12. </h4>
  13. </td>
  14. <td align=right>
  15. <h4>
  16. Telefon <%tel%>
  17. <br>Telefax <%fax%>
  18. </h4>
  19. </td>
  20. </tr>
  21. <tr>
  22. <th colspan=3>
  23. <h4>R E C H N U N G</h4>
  24. </th>
  25. </tr>
  26. </table>
  27. <table width=100% callspacing=0 cellpadding=0>
  28. <tr>
  29. <td align=right>
  30. <table>
  31. <tr>
  32. <th align=right>Ausgestellt am</th><td width=10>&nbsp;</td><td><%invdate%></td>
  33. </tr>
  34. <tr>
  35. <th align=right>Bezahlbar bis</th><td width=10>&nbsp;</td><td><%duedate%></td>
  36. </tr>
  37. <tr>
  38. <th align=right>Nummer</th><td>&nbsp;</td><td><%invnumber%></td></tr>
  39. </tr>
  40. <!--
  41. <tr>
  42. <th align=right>Clerk:</th><td>&nbsp;</td><td><%username%></td>
  43. </tr>
  44. -->
  45. <tr>
  46. <td>&nbsp;</td>
  47. </tr>
  48. </td>
  49. </table>
  50. </tr>
  51. <tr>
  52. <td>
  53. <table width=100%>
  54. <tr bgcolor=000000>
  55. <th align=left><font color=ffffff>An:</th>
  56. <th align=left><font color=ffffff>Lieferaddresse:</th>
  57. </tr>
  58. <!--
  59. other variables which can be use:
  60. contact, shiptocontact, shiptophone, shiptofax
  61. -->
  62. <tr>
  63. <td><%name%>
  64. <br><%address1%>
  65. <%if address2%>
  66. <br><%address2%>
  67. <%end address2%>
  68. <br><%city%> <%state%> <%zipcode%>
  69. <%if country%>
  70. <%country%>
  71. <%end country%>
  72. </td>
  73. <td><%shiptoname%>
  74. <br><%shiptoaddress1%>
  75. <%if shiptoaddress2%>
  76. <br><%shiptoaddress2%>
  77. <%end shiptoaddress2%>
  78. <br><%shiptocity%> <%shiptostate%> <%shiptozipcode%>
  79. <%if shiptocountry%>
  80. <%shiptocountry%>
  81. <%end shiptocountry%>
  82. </td>
  83. </tr>
  84. </table>
  85. </td>
  86. </tr>
  87. <tr>
  88. <td>&nbsp;</td>
  89. </tr>
  90. <tr>
  91. <td>
  92. <table width=100%>
  93. <tr bgcolor=000000>
  94. <!-- <th align=right><font color=ffffff>No.</th> -->
  95. <th align=left><font color=ffffff>Nummer</th>
  96. <th align=left><font color=ffffff>Beschreibung</th>
  97. <th><font color=ffffff>Anz.</th>
  98. <th>&nbsp;</th>
  99. <th><font color=ffffff>Preis</th>
  100. <th><font color=ffffff>Rab</th>
  101. <th><font color=ffffff>Total</th>
  102. </tr>
  103. <%foreach number%>
  104. <tr valign=top>
  105. <!-- <td align=right><%runningnumber%>.</td>
  106. adjust the colspan if you include this to shift subtotal one to the right
  107. -->
  108. <td><%number%></td>
  109. <td><%description%></td>
  110. <td align=right><%qty%></td>
  111. <td><%unit%></td>
  112. <td align=right><%sellprice%></td>
  113. <td align=right><%discount%></td>
  114. <td align=right><%linetotal%></td>
  115. </tr>
  116. <%end number%>
  117. <!--
  118. you can also use netprice instead of sellprice if you
  119. don't want to show the discount
  120. netprice = sellprice - discount
  121. to show the percentage for a discount use <%discountrate%>
  122. -->
  123. <tr>
  124. <td colspan=7><hr noshade></td>
  125. </tr>
  126. <%if taxincluded%>
  127. <tr>
  128. <th colspan=5 align=right>Total</th>
  129. <td colspan=2 align=right><%invtotal%></td>
  130. </tr>
  131. <%end taxincluded%>
  132. <%if not taxincluded%>
  133. <tr>
  134. <th colspan=5 align=right>Zwischensumme</th>
  135. <td colspan=2 align=right><%subtotal%></td>
  136. </tr>
  137. <%end taxincluded%>
  138. <%foreach tax%>
  139. <tr>
  140. <th colspan=5 align=right><%taxdescription%> auf <%taxbase%></th>
  141. <td colspan=2 align=right><%tax%></td>
  142. </tr>
  143. <%end tax%>
  144. <%if paid%>
  145. <tr>
  146. <th colspan=5 align=right>Bezahlt</th>
  147. <td colspan=2 align=right>- <%paid%></td>
  148. </tr>
  149. <%end paid%>
  150. <tr>
  151. <td colspan=3>&nbsp;</td>
  152. <td colspan=4><hr noshade></td>
  153. </tr>
  154. <tr>
  155. <td colspan=3>Bezahlbar innerhalb von <b><%terms%></b> Tagen</td>
  156. <%if total%>
  157. <th colspan=2 align=right>Total</th>
  158. <th colspan=2 align=right><%total%></th>
  159. <%end total%>
  160. </tr>
  161. <tr>
  162. <td>&nbsp;</td>
  163. </tr>
  164. </table>
  165. </td>
  166. </tr>
  167. <tr>
  168. <td>
  169. <table width=100%>
  170. <tr valign=top>
  171. <%if notes%>
  172. <td>Bemerkungen:</td>
  173. <td><%notes%></td>
  174. <%end notes%>
  175. <td align=right>
  176. Alle Preise in <b><%currency%></b>
  177. <br><%shippingpoint%>
  178. </td>
  179. </tr>
  180. </table>
  181. </td>
  182. </tr>
  183. <tr><td>&nbsp;</td></tr>
  184. <tr>
  185. <td>
  186. <table width=100%>
  187. <tr valign=top>
  188. <td><font size=-3>
  189. Rechnung ist bezahlbar innerhalb von <%terms%> Tagen.
  190. Nach dem <%duedate%> werden Zinsen zu einem
  191. monatlichen Satz von 1.5% verrechnet.
  192. Waren bleiben im Besitz von <%company%> bis die Rechnung voll bezahlt ist.
  193. Rückgaben werden mit 10% Lagergebühren belastet. Beschädigte Waren
  194. und Waren ohne eine Rückgabenummer werden nicht entgegengenommen.
  195. </font>
  196. </td>
  197. <td width=150>
  198. X <hr noshade>
  199. </td>
  200. </tr>
  201. </table>
  202. </td>
  203. </tr>
  204. <%foreach tax%>
  205. <tr>
  206. <th colspan=7 align=left><font size=-2><%taxdescription%> Registration <%taxnumber%></th>
  207. </tr>
  208. <%end tax%>
  209. <%if taxincluded%>
  210. <tr>
  211. <th colspan=7 align=left><font size=-2>Steuern sind im Preis inbegriffen.</th>
  212. </tr>
  213. <%end taxincluded%>
  214. <!-- business number
  215. <tr>
  216. <th colspan=7 align=left><font size=-2>Business Number: <%businessnumber%></font></th>
  217. </tr>
  218. -->
  219. <tr>
  220. <th colspan=7 align=left>
  221. <hr>
  222. <br>Bankverbindung
  223. <br>Bank
  224. <br>Bankleitzahl
  225. <br>Konto No.
  226. </td>
  227. </tr>
  228. </table>
  229. </td>
  230. </tr>
  231. </table>
  232. </body>
  233. </html>