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.

183 lines
6.8 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- PDF/HMTL REPORTS -->
  4. <!-- General Ledger -->
  5. <report
  6. id="action_report_general_ledger_qweb"
  7. model="report_general_ledger"
  8. string="General Ledger"
  9. report_type="qweb-pdf"
  10. name="account_financial_report.report_general_ledger_qweb"
  11. file="account_financial_report.report_general_ledger"
  12. />
  13. <report
  14. id="action_report_general_ledger_html"
  15. model="report_general_ledger"
  16. string="General Ledger"
  17. report_type="qweb-html"
  18. name="account_financial_report.report_general_ledger_qweb"
  19. file="account_financial_report.report_general_ledger"
  20. />
  21. <!-- Trial Balance -->
  22. <report
  23. id="action_report_trial_balance_qweb"
  24. model="report_trial_balance"
  25. string="Trial Balance"
  26. report_type="qweb-pdf"
  27. name="account_financial_report.report_trial_balance_qweb"
  28. file="account_financial_report.report_trial_balance_qweb"
  29. />
  30. <report
  31. id="action_report_trial_balance_html"
  32. model="report_trial_balance"
  33. string="Trial Balance"
  34. report_type="qweb-html"
  35. name="account_financial_report.report_trial_balance_qweb"
  36. file="account_financial_report.report_trial_balance_html"
  37. />
  38. <!-- Open Items -->
  39. <report
  40. id="action_report_open_items_qweb"
  41. model="report_open_items"
  42. string="Open Items"
  43. report_type="qweb-pdf"
  44. name="account_financial_report.report_open_items_qweb"
  45. file="account_financial_report.report_open_items_qweb"
  46. />
  47. <report
  48. id="action_report_open_items_html"
  49. model="report_open_items"
  50. string="Open Items"
  51. report_type="qweb-html"
  52. name="account_financial_report.report_open_items_qweb"
  53. file="account_financial_report.report_open_items_html"
  54. />
  55. <!-- Aged Partner Balance -->
  56. <report
  57. id="action_report_aged_partner_balance_qweb"
  58. model="report_aged_partner_balance"
  59. string="Aged Partner Balance"
  60. report_type="qweb-pdf"
  61. name="account_financial_report.report_aged_partner_balance_qweb"
  62. file="account_financial_report.report_aged_partner_balance_qweb"
  63. />
  64. <report
  65. id="action_report_aged_partner_balance_html"
  66. model="report_aged_partner_balance"
  67. string="Aged Partner Balance"
  68. report_type="qweb-html"
  69. name="account_financial_report.report_aged_partner_balance_qweb"
  70. file="account_financial_report.report_aged_partner_balance_html"
  71. />
  72. <!-- VAT Report -->
  73. <report
  74. id="action_report_vat_report_qweb"
  75. model="report_vat_report"
  76. string="VAT Report"
  77. report_type="qweb-pdf"
  78. name="account_financial_report.report_vat_report_qweb"
  79. file="account_financial_report.report_vat_report_qweb"
  80. />
  81. <report
  82. id="action_report_vat_report_html"
  83. model="report_vat_report"
  84. string="VAT Report"
  85. report_type="qweb-html"
  86. name="account_financial_report.report_vat_report_qweb"
  87. file="account_financial_report.report_vat_report_html"
  88. />
  89. <!-- PDF REPORTS : paperformat -->
  90. <record id="report_qweb_paperformat" model="report.paperformat">
  91. <field name="name">Account financial report qweb paperformat</field>
  92. <field name="default" eval="True"/>
  93. <field name="format">custom</field>
  94. <field name="page_height">297</field>
  95. <field name="page_width">210</field>
  96. <field name="orientation">Portrait</field>
  97. <field name="margin_top">12</field>
  98. <field name="margin_bottom">8</field>
  99. <field name="margin_left">5</field>
  100. <field name="margin_right">5</field>
  101. <field name="header_line" eval="False"/>
  102. <field name="header_spacing">10</field>
  103. <field name="dpi">110</field>
  104. </record>
  105. <record id="action_report_general_ledger_qweb" model="ir.actions.report">
  106. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  107. </record>
  108. <record id="action_report_trial_balance_qweb" model="ir.actions.report">
  109. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  110. </record>
  111. <record id="action_report_open_items_qweb" model="ir.actions.report">
  112. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  113. </record>
  114. <record id="action_report_aged_partner_balance_qweb"
  115. model="ir.actions.report">
  116. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  117. </record>
  118. <record id="action_report_vat_report_qweb"
  119. model="ir.actions.report">
  120. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  121. </record>
  122. <!-- XLSX REPORTS -->
  123. <record id="action_report_general_ledger_xlsx" model="ir.actions.report">
  124. <field name="name">General Ledger XLSX</field>
  125. <field name="model">report_general_ledger</field>
  126. <field name="type">ir.actions.report</field>
  127. <field name="report_name">a_f_r.report_general_ledger_xlsx</field>
  128. <field name="report_type">xlsx</field>
  129. <field name="report_file">report_general_ledger</field>
  130. </record>
  131. <record id="action_report_trial_balance_xlsx" model="ir.actions.report">
  132. <field name="name">Trial Balance XLSX</field>
  133. <field name="model">report_trial_balance</field>
  134. <field name="type">ir.actions.report</field>
  135. <field name="report_name">a_f_r.report_trial_balance_xlsx</field>
  136. <field name="report_type">xlsx</field>
  137. <field name="report_file">report_trial_balance</field>
  138. </record>
  139. <record id="action_report_open_items_xlsx" model="ir.actions.report">
  140. <field name="name">Open Items XLSX</field>
  141. <field name="model">report_open_items</field>
  142. <field name="type">ir.actions.report</field>
  143. <field name="report_name">a_f_r.report_open_items_xlsx</field>
  144. <field name="report_type">xlsx</field>
  145. <field name="report_file">report_open_items</field>
  146. </record>
  147. <record id="action_report_aged_partner_balance_xlsx" model="ir.actions.report">
  148. <field name="name">Aged Partner Balance XLSX</field>
  149. <field name="model">report_aged_partner_balance</field>
  150. <field name="type">ir.actions.report</field>
  151. <field name="report_name">a_f_r.report_aged_partner_balance_xlsx</field>
  152. <field name="report_type">xlsx</field>
  153. <field name="report_file">report_aged_partner_balance</field>
  154. </record>
  155. <record id="action_report_vat_report_xlsx" model="ir.actions.report">
  156. <field name="name">VAT Report XLSX</field>
  157. <field name="model">report_vat_report</field>
  158. <field name="type">ir.actions.report</field>
  159. <field name="report_name">a_f_r.report_vat_report_xlsx</field>
  160. <field name="report_type">xlsx</field>
  161. <field name="report_file">report_vat_report</field>
  162. </record>
  163. </odoo>