report_account_moveline.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <report
  5. id="report_moveline_report"
  6. string="Listado de análisis de impuestos"
  7. model="account.move.line"
  8. report_type="qweb-pdf"
  9. file="account_tax_settlement.report_account_moveline"
  10. name="account_tax_settlement.report_account_moveline"
  11. />
  12. <template id="report_account_moveline">
  13. <t t-call="report.html_container">
  14. <t t-call="report.external_layout">
  15. <div class="page">
  16. <style type="text/css">
  17. .crm_tcab{
  18. font-size: 3mm;
  19. font-family: Arial, Helvetica, sans-serif;
  20. }
  21. .crm_tbody{
  22. font-size: 2.8mm;
  23. font-family: Arial, Helvetica, sans-serif;
  24. }
  25. .taxtotal{
  26. font-size: 2.8mm;
  27. }
  28. .total{
  29. font-size: 2.8mm;
  30. }
  31. .untotal{
  32. font-size: 2.8mm;
  33. }
  34. .logo1{
  35. width: 100%;
  36. top: 1.5cm;
  37. }
  38. </style>
  39. <h4 class="text-center">Listado de análisis de impuestos</h4>
  40. <div class="logo1"> </div>
  41. <table class="table table-bordered">
  42. <thead class="crm_tcab">
  43. <tr class="active">
  44. <th class="text-center">Fecha</th>
  45. <th class="text-center">Cliente/Proveedor</th>
  46. <th class="text-center">Asiento</th>
  47. <th class="text-center">Débito</th>
  48. <th class="text-center">Crédito</th>
  49. <th class="text-center">Total Impuesto</th>
  50. </tr>
  51. </thead>
  52. <t t-foreach="docs" t-as="o">
  53. <tbody class="crm_tbody">
  54. <td class="text-left">
  55. <span t-field="o.date"/>
  56. </td>
  57. <td class="text-left">
  58. <span t-field="o.partner_id.name"/>
  59. </td>
  60. <td class="text-left">
  61. <span t-field="o.name"/>
  62. </td>
  63. <td class="text-right">
  64. <span t-field="o.debit"/>
  65. </td>
  66. <td class="text-right">
  67. <span t-field="o.credit"/>
  68. </td>
  69. <td class="text-right">
  70. <span t-field="o.tax_amount"/>
  71. </td>
  72. </tbody>
  73. </t>
  74. </table>
  75. </div>
  76. </t>
  77. </t>
  78. </template>
  79. </data>
  80. </openerp>