You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
4.7 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <template id="open_invoice_report_qweb">
  5. <style type="text/css">
  6. td, th {
  7. font-size: 10px;
  8. }
  9. npage {
  10. font-size: 10px
  11. }
  12. </style>
  13. <div class="header">
  14. <div class="row">
  15. <div class="col-xs-4 text-left">
  16. <h6><span t-esc="context_timestamp(datetime.datetime.now()).strftime('%Y-%m-%d %H:%M')"/></h6>
  17. </div>
  18. <div class="col-xs-4 text-center">
  19. <img t-if="res_company.logo" t-att-src="'data:image/png;base64,%s' % res_company.logo" style="max-height: 50px;"/>
  20. </div>
  21. <div class="col-xs-4 text-right">
  22. <npage>
  23. <ul class="list-inline">
  24. <li><span class="page"/></li>
  25. <li>/</li>
  26. <li><span class="topage"/></li>
  27. </ul>
  28. </npage>
  29. </div>
  30. </div>
  31. <div class="row">
  32. <table class="table table-bordered table-condensed" style="text-align: center;">
  33. <thead>
  34. <tr>
  35. <th>Chart of Account</th>
  36. <th>Fiscal Year</th>
  37. <th>Period Filters</th>
  38. <th>Accounts Filter</th>
  39. <th>Target Moves</th>
  40. <th>Initial Balance</th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <td></td>
  45. <td></td>
  46. <td></td>
  47. <td></td>
  48. <td></td>
  49. <td></td>
  50. </tbody>
  51. </table>
  52. </div>
  53. </div>
  54. <t t-call="report.html_container">
  55. <t t-call="report.internal_layout">
  56. <div class="page">
  57. <t t-foreach="data" t-as="account">
  58. <p><span t-esc="account" /></p>
  59. <t t-foreach="data[account]" t-as="partner">
  60. <p><span t-esc="partner" /></p>
  61. <table class="table table-bordered table-condensed">
  62. <thead>
  63. <tr>
  64. <th>Date</th>
  65. <th>Period</th>
  66. <th>Entry</th>
  67. <th>Journal</th>
  68. <th>Partner</th>
  69. <th>Reference</th>
  70. <th>Label</th>
  71. <th>Rec.</th>
  72. <th>Due Date</th>
  73. <th>Debit</th>
  74. <th>Credit</th>
  75. <th>Cumul.Bal.</th>
  76. </tr>
  77. </thead>
  78. <tbody>
  79. <tr t-foreach="data[account][partner]" t-as="move">
  80. <td></td>
  81. <td></td>
  82. <td></td>
  83. <td></td>
  84. <td></td>
  85. <td></td>
  86. <td></td>
  87. <td></td>
  88. <td></td>
  89. <td></td>
  90. <td></td>
  91. <td></td>
  92. </tr>
  93. <tr>
  94. <td>Comulate Balance on Partner</td>
  95. <td>0</td>
  96. <td>0</td>
  97. <td>0</td>
  98. </tr>
  99. </tbody>
  100. </table>
  101. </t>
  102. <p>ACCOUNT Comulate Balance</p>
  103. </t>
  104. </div>
  105. </t>
  106. </t>
  107. </template>
  108. </data>
  109. </openerp>