summaryrefslogtreecommitdiff
path: root/templates/Brazilian_Portuguese-invoice.html
blob: 326419b5b8ed84b148037728ff04a0efcd5a8296 (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. <th><img src=http://www.sql-ledger.org/images/sql-ledger.png border=0 width=80 height=58></th>
  15. <td align=right>
  16. <h4>
  17. Tel: <%tel%>
  18. <br>Fax: <%fax%>
  19. </h4>
  20. </td>
  21. </tr>
  22. <tr>
  23. <th colspan=3>
  24. <h4>F A T U R A</h4>
  25. </th>
  26. </tr>
  27. </table>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td>&nbsp;</td>
  32. <td>
  33. <table width=100% callspacing=0 cellpadding=0>
  34. <tr bgcolor=000000>
  35. <th align=left width=50%><font color=ffffff>Para</th>
  36. <th align=left width=50%><font color=ffffff>Enviar para</th>
  37. </tr>
  38. <tr valign=top>
  39. <td><%name%>
  40. <br><%address1%>
  41. <%if address2%>
  42. <br><%address2%>
  43. <%end address2%>
  44. <br><%city%> <%state%> <%zipcode%>
  45. <%if country%>
  46. <br><%country%>
  47. <%end country%>
  48. <br>
  49. <%if contact%>
  50. <br><%contact%>
  51. <br>
  52. <%end contact%>
  53. <%if customerphone%>
  54. <br>Tel: <%customerphone%>
  55. <%end customerphone%>
  56. <%if customerfax%>
  57. <br>Fax: <%customerfax%>
  58. <%end customerfax%>
  59. <%if email%>
  60. <br><%email%>
  61. <%end email%>
  62. </td>
  63. <td><%shiptoname%>
  64. <br><%shiptoaddress1%>
  65. <%if shiptoaddress2%>
  66. <br><%shiptoaddress2%>
  67. <%end shiptoaddress2%>
  68. <br><%shiptocity%> <%shiptostate%> <%shiptozipcode%>
  69. <%if shiptocountry%>
  70. <br><%shiptocountry%>
  71. <%end shiptocountry%>
  72. <br>
  73. <%if shiptocontact%>
  74. <br><%shiptocontact%>
  75. <br>
  76. <%end shiptocontact%>
  77. <%if shiptophone%>
  78. <br>Tel: <%shiptophone%>
  79. <%end shiptophone%>
  80. <%if shiptofax%>
  81. <br>Fax: <%shiptofax%>
  82. <%end shiptofax%>
  83. <%if shiptoemail%>
  84. <br><%shiptoemail%>
  85. <%end shiptoemail%>
  86. </td>
  87. </tr>
  88. </table>
  89. </td>
  90. </tr>
  91. <tr height=5></tr>
  92. <tr>
  93. <td>&nbsp;</td>
  94. <td>
  95. <table width=100% border=1>
  96. <tr>
  97. <th width=14% align=left nowrap>Fatura #</th>
  98. <th width=14% align=left nowrap>Data</th>
  99. <th width=14% align=left nowrap>Vencimento</th>
  100. <th width=14% align=left>Pedido #</th>
  101. <th width=14% align=left nowrap>Vendedor</th>
  102. <th width=14% align=left nowrap>Local do despacho</th>
  103. <th width=14% align=left nowrap>Enviar por</th>
  104. </tr>
  105. <tr>
  106. <td><%invnumber%></td>
  107. <td><%invdate%></td>
  108. <td><%duedate%></td>
  109. <td><%ordnumber%>&nbsp;</td>
  110. <td><%employee%>&nbsp;</td>
  111. <td><%shippingpoint%>&nbsp;</td>
  112. <td><%shipvia%>&nbsp;</td>
  113. </tr>
  114. </table>
  115. </td>
  116. </tr>
  117. <tr>
  118. <td>&nbsp;</td>
  119. <td>
  120. <table width=100%>
  121. <tr bgcolor=000000>
  122. <th align=right><font color=ffffff>No.</th>
  123. <th align=left><font color=ffffff>Número</th>
  124. <th align=left><font color=ffffff>Descrição</th>
  125. <th>&nbsp;</th>
  126. <th align=right><font color=ffffff>Qtd</th>
  127. <th>&nbsp;</th>
  128. <th align=right><font color=ffffff>Preço unit.</th>
  129. <th align=right><font color=ffffff>Desc %</th>
  130. <th align=right><font color=ffffff>Extendido</th>
  131. </tr>
  132. <%foreach number%>
  133. <tr valign=top>
  134. <td align=right><%runningnumber%>.</td>
  135. <td><%number%></td>
  136. <td><%description%></td>
  137. <td><%deliverydate%></td>
  138. <td align=right><%qty%></td>
  139. <td><%unit%></td>
  140. <td align=right><%sellprice%></td>
  141. <td align=right><%discountrate%></td>
  142. <td align=right><%linetotal%></td>
  143. </tr>
  144. <%end number%>
  145. <!--
  146. you can also use netprice instead of sellprice if you
  147. don't want to show the discount
  148. netprice = sellprice - discount
  149. -->
  150. <tr>
  151. <td colspan=9><hr noshade></td>
  152. </tr>
  153. <tr>
  154. <%if taxincluded%>
  155. <th colspan=7 align=right>Total</th>
  156. <td colspan=2 align=right><%invtotal%></td>
  157. <%end taxincluded%>
  158. <%if not taxincluded%>
  159. <th colspan=7 align=right>Subtotal</th>
  160. <td colspan=2 align=right><%subtotal%></td>
  161. <%end taxincluded%>
  162. </tr>
  163. <%foreach tax%>
  164. <tr>
  165. <th colspan=7 align=right><%taxdescription%> em <%taxbase%> @ <%taxrate%> %</th>
  166. <td colspan=2 align=right><%tax%></td>
  167. </tr>
  168. <%end tax%>
  169. <%if paid%>
  170. <tr>
  171. <th colspan=7 align=right>Pago</th>
  172. <td colspan=2 align=right>- <%paid%></td>
  173. </tr>
  174. <%end paid%>
  175. <tr>
  176. <td colspan=5>&nbsp;</td>
  177. <td colspan=4><hr noshade></td>
  178. </tr>
  179. <%if total%>
  180. <tr>
  181. <td colspan=5>&nbsp;</td>
  182. <th colspan=2 align=right nowrap>Pendente</th>
  183. <th colspan=2 align=right><%total%></th>
  184. </tr>
  185. <%end total%>
  186. <tr>
  187. </table>
  188. </td>
  189. </tr>
  190. <tr>
  191. <td>&nbsp;</td>
  192. <td>
  193. <table width=100%>
  194. <tr valign=top>
  195. <%if notes%>
  196. <td><%notes%></td>
  197. <%end notes%>
  198. <td><%text_amount%> ***** <%decimal%>/100</td>
  199. <td align=right nowrap>
  200. Todos os valores em <b><%currency%></b>
  201. </td>
  202. </tr>
  203. </table>
  204. </td>
  205. </tr>
  206. <%if paid%>
  207. <tr>
  208. <td>&nbsp;</td>
  209. <td colspan=9>
  210. <table width=60%>
  211. <tr>
  212. <th align=left>Pagamentos</th>
  213. </tr>
  214. <tr>
  215. <td colspan=4>
  216. <hr noshade>
  217. </td>
  218. </tr>
  219. <tr>
  220. <th align=left>Data</th>
  221. <th align=left>Conta</th>
  222. <th align=left>Fonte</th>
  223. <th align=left>Valor</th>
  224. </tr>
  225. <%end paid%>
  226. <%foreach payment%>
  227. <tr>
  228. <td><%paymentdate%></td>
  229. <td><%paymentaccount%></td>
  230. <td><%paymentsource%></td>
  231. <td><%payment%></td>
  232. </tr>
  233. <%end payment%>
  234. <%if paid%>
  235. </table>
  236. </td>
  237. </tr>
  238. <%end paid%>
  239. <tr height=10></tr>
  240. <tr>
  241. <td>&nbsp;</td>
  242. <th>
  243. Obrigado pela preferência!
  244. </th>
  245. </tr>
  246. <tr>
  247. <td>&nbsp;</td>
  248. <td>
  249. <table width=100%>
  250. <tr valign=top>
  251. <td width=60%><font size=-3>
  252. Pagamentos pendentes até <%duedate%>.
  253. Itens devolvidos estão sujeitos a cobrança de 10% como taxa de reestocagem. Uma autorização de devolução deve ser obtida de <%company%> antes da devolução das mercadorias. Devoluções devem ser enviadas com frete pago e com o seguro apropriado. <%company%> não se responsabilizará por danos durante o transporte.
  254. </font>
  255. </td>
  256. <td width=40%>
  257. X <hr noshade>
  258. </td>
  259. </tr>
  260. </table>
  261. </td>
  262. </tr>
  263. <%foreach tax%>
  264. <tr>
  265. <td>&nbsp;</td>
  266. <th colspan=9 align=left><font size=-2><%taxdescription%> Registro <%taxnumber%></th>
  267. </tr>
  268. <%end tax%>
  269. <%if taxincluded%>
  270. <tr>
  271. <td>&nbsp;</td>
  272. </tr>
  273. <tr>
  274. <th colspan=8 align=left><font size=-2>Os impostos estão incuídos nos preços.</th>
  275. </tr>
  276. <%end taxincluded%>
  277. </table>
  278. </body>
  279. </html>