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.

132 lines
5.2 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <template id="open_invoice_report_document">
  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. <table class="table table-bordered table-condensed">
  58. <t t-foreach="" t-as="">
  59. <td><b>ACCOUNT</b></td>
  60. <t t-foreach="" t-as="">
  61. <span><b>PARTER</b></span>
  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="" t-as="">
  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 class="col-xs-3 offset col-xs-6">Comulate Balance on Partner</td>
  95. <td></td>
  96. <td></td>
  97. <td></td>
  98. </tr>
  99. </tbody>
  100. </t>
  101. <tr>
  102. <h3>
  103. <td class="col-xs-6">ACCOUNT</td>
  104. <td class="col-xs-3">Comulate Balance</td>
  105. <td></td>
  106. <td></td>
  107. <td></td>
  108. </h3>
  109. </tr>
  110. </t>
  111. </table>
  112. </div>
  113. </t>
  114. </t>
  115. </template>
  116. <template id="open_invoice_report_qweb">
  117. <t t-call="report.html_container">
  118. <t t-foreach="doc_ids" t-as="doc_id">
  119. <t t-raw="translate_doc(doc_id, doc_model, 'partner_id.lang',
  120. 'account_financial_report_qweb.open_invoice_report_document')"/>
  121. </t>
  122. </t>
  123. </template>
  124. </data>
  125. </openerp>