Guest User

Untitled

a guest
Dec 18th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. import pdfkit
  2.  
  3. options = {
  4. 'page-size': 'Letter',
  5. 'margin-top': '1cm',
  6. 'margin-right': '1cm',
  7. 'margin-bottom': '1cm',
  8. 'margin-left': '1cm',
  9. '--footer-right': '[page]',
  10. }
  11. body = u"""
  12. <html>
  13. <head>
  14. <meta name="pdfkit-page-size" content="Letter"/>
  15. <meta name="pdfkit-orientation" content="Portrait"/>
  16. <meta charset="utf-8">
  17. <style>
  18. .td_left{
  19. text-align: left;
  20. }
  21. .td_rigth{
  22. text-align: right;
  23. }
  24. img{
  25. width: 150px;
  26. height: auto;
  27. position: absolute;
  28. top: 0;
  29. left: 0;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <img src='/home/produccion/Downloads/logo.png'>
  35. <center>
  36. <h2><b>NOMBRE DE LA EMPRESA - NOMBRE DE LA SUCURSAL</b></h2>
  37. <h3><b>NIT: 000.000.000-0</b></h3>
  38. <h2><b>CONTABILIZACIÓN</b></h2>
  39. <center>
  40. <table>
  41. <thead>
  42. <th>CUENTA PUC</th>
  43. <th>BOD</th>
  44. <th class='td_left'>TERCERO</th>
  45. <th class='td_rigth'>DOC N°</th>
  46. <th class='td_rigth'>VENCE</th>
  47. <th class='td_rigth'>CANTIDAD</th>
  48. <th class='td_rigth'>DÉBITO</th>
  49. <th class='td_rigth'>CRÉDITO</th>
  50. </thead>
  51. <tbody>
  52. """
  53. for i in range(15):
  54. body += """<tr>
  55. <td>0000-00-000</td>
  56. <td>{0}</td>
  57. <td class='td_left'>NOMBRE DEL TERCERO</td>
  58. <td class='td_rigth'>AAA0000000001</td>
  59. <td class='td_rigth'>01/01/2000</td>
  60. <td class='td_rigth'>0.0</td>
  61. <td class='td_rigth'>00000000</td>
  62. <td class='td_rigth'>00000000</td>
  63. </tr>""".format(i+1)
  64. body += """</tbody>
  65. </table>
  66. </body>
  67. </html>"""
  68. pdfkit.from_string(body, 'ejemplo.pdf', options=options)
Add Comment
Please, Sign In to add comment