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.

210 lines
7.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_qweb"
  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_html"
  20. />
  21. <!-- Journal Ledger -->
  22. <report
  23. id="action_report_journal_ledger_qweb"
  24. model="report_journal_ledger"
  25. string="Journal Ledger"
  26. report_type="qweb-pdf"
  27. name="account_financial_report.report_journal_ledger_qweb"
  28. file="account_financial_report.report_journal_ledger_qweb"
  29. />
  30. <report
  31. id="action_report_journal_ledger_html"
  32. model="report_journal_ledger"
  33. string="Journal Ledger"
  34. report_type="qweb-html"
  35. name="account_financial_report.report_journal_ledger_qweb"
  36. file="account_financial_report.report_journal_ledger_html"
  37. />
  38. <!-- Trial Balance -->
  39. <report
  40. id="action_report_trial_balance_qweb"
  41. model="report_trial_balance"
  42. string="Trial Balance"
  43. report_type="qweb-pdf"
  44. name="account_financial_report.report_trial_balance_qweb"
  45. file="account_financial_report.report_trial_balance_qweb"
  46. />
  47. <report
  48. id="action_report_trial_balance_html"
  49. model="report_trial_balance"
  50. string="Trial Balance"
  51. report_type="qweb-html"
  52. name="account_financial_report.report_trial_balance_qweb"
  53. file="account_financial_report.report_trial_balance_html"
  54. />
  55. <!-- Open Items -->
  56. <report
  57. id="action_report_open_items_qweb"
  58. model="report_open_items"
  59. string="Open Items"
  60. report_type="qweb-pdf"
  61. name="account_financial_report.report_open_items_qweb"
  62. file="account_financial_report.report_open_items_qweb"
  63. />
  64. <report
  65. id="action_report_open_items_html"
  66. model="report_open_items"
  67. string="Open Items"
  68. report_type="qweb-html"
  69. name="account_financial_report.report_open_items_qweb"
  70. file="account_financial_report.report_open_items_html"
  71. />
  72. <!-- Aged Partner Balance -->
  73. <report
  74. id="action_report_aged_partner_balance_qweb"
  75. model="report_aged_partner_balance"
  76. string="Aged Partner Balance"
  77. report_type="qweb-pdf"
  78. name="account_financial_report.report_aged_partner_balance_qweb"
  79. file="account_financial_report.report_aged_partner_balance_qweb"
  80. />
  81. <report
  82. id="action_report_aged_partner_balance_html"
  83. model="report_aged_partner_balance"
  84. string="Aged Partner Balance"
  85. report_type="qweb-html"
  86. name="account_financial_report.report_aged_partner_balance_qweb"
  87. file="account_financial_report.report_aged_partner_balance_html"
  88. />
  89. <!-- VAT Report -->
  90. <report
  91. id="action_report_vat_report_qweb"
  92. model="report_vat_report"
  93. string="VAT Report"
  94. report_type="qweb-pdf"
  95. name="account_financial_report.report_vat_report_qweb"
  96. file="account_financial_report.report_vat_report_qweb"
  97. />
  98. <report
  99. id="action_report_vat_report_html"
  100. model="report_vat_report"
  101. string="VAT Report"
  102. report_type="qweb-html"
  103. name="account_financial_report.report_vat_report_qweb"
  104. file="account_financial_report.report_vat_report_html"
  105. />
  106. <!-- PDF REPORTS : paperformat -->
  107. <record id="report_qweb_paperformat" model="report.paperformat">
  108. <field name="name">Account financial report qweb paperformat</field>
  109. <field name="default" eval="True"/>
  110. <field name="format">custom</field>
  111. <field name="page_height">297</field>
  112. <field name="page_width">210</field>
  113. <field name="orientation">Portrait</field>
  114. <field name="margin_top">12</field>
  115. <field name="margin_bottom">8</field>
  116. <field name="margin_left">5</field>
  117. <field name="margin_right">5</field>
  118. <field name="header_line" eval="False"/>
  119. <field name="header_spacing">10</field>
  120. <field name="dpi">110</field>
  121. </record>
  122. <record id="action_report_general_ledger_qweb" model="ir.actions.report">
  123. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  124. </record>
  125. <record id="action_report_trial_balance_qweb" model="ir.actions.report">
  126. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  127. </record>
  128. <record id="action_report_open_items_qweb" model="ir.actions.report">
  129. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  130. </record>
  131. <record id="action_report_aged_partner_balance_qweb"
  132. model="ir.actions.report">
  133. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  134. </record>
  135. <record id="action_report_vat_report_qweb"
  136. model="ir.actions.report">
  137. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  138. </record>
  139. <!-- XLSX REPORTS -->
  140. <record id="action_report_general_ledger_xlsx" model="ir.actions.report">
  141. <field name="name">General Ledger XLSX</field>
  142. <field name="model">report_general_ledger</field>
  143. <field name="type">ir.actions.report</field>
  144. <field name="report_name">a_f_r.report_general_ledger_xlsx</field>
  145. <field name="report_type">xlsx</field>
  146. <field name="report_file">report_general_ledger</field>
  147. </record>
  148. <record id="action_report_journal_ledger_xlsx" model="ir.actions.report">
  149. <field name="name">Journal Ledger XLSX</field>
  150. <field name="model">report_journal_ledger</field>
  151. <field name="type">ir.actions.report</field>
  152. <field name="report_name">a_f_r.report_journal_ledger_xlsx</field>
  153. <field name="report_type">xlsx</field>
  154. <field name="report_file">report_journal_ledger</field>
  155. </record>
  156. <record id="action_report_trial_balance_xlsx" model="ir.actions.report">
  157. <field name="name">Trial Balance XLSX</field>
  158. <field name="model">report_trial_balance</field>
  159. <field name="type">ir.actions.report</field>
  160. <field name="report_name">a_f_r.report_trial_balance_xlsx</field>
  161. <field name="report_type">xlsx</field>
  162. <field name="report_file">report_trial_balance</field>
  163. </record>
  164. <record id="action_report_open_items_xlsx" model="ir.actions.report">
  165. <field name="name">Open Items XLSX</field>
  166. <field name="model">report_open_items</field>
  167. <field name="type">ir.actions.report</field>
  168. <field name="report_name">a_f_r.report_open_items_xlsx</field>
  169. <field name="report_type">xlsx</field>
  170. <field name="report_file">report_open_items</field>
  171. </record>
  172. <record id="action_report_aged_partner_balance_xlsx" model="ir.actions.report">
  173. <field name="name">Aged Partner Balance XLSX</field>
  174. <field name="model">report_aged_partner_balance</field>
  175. <field name="type">ir.actions.report</field>
  176. <field name="report_name">a_f_r.report_aged_partner_balance_xlsx</field>
  177. <field name="report_type">xlsx</field>
  178. <field name="report_file">report_aged_partner_balance</field>
  179. </record>
  180. <record id="action_report_vat_report_xlsx" model="ir.actions.report">
  181. <field name="name">VAT Report XLSX</field>
  182. <field name="model">report_vat_report</field>
  183. <field name="type">ir.actions.report</field>
  184. <field name="report_name">a_f_r.report_vat_report_xlsx</field>
  185. <field name="report_type">xlsx</field>
  186. <field name="report_file">report_vat_report</field>
  187. </record>
  188. </odoo>