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.

222 lines
8.1 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <!-- PDF/HMTL REPORTS -->
  4. <!-- General Ledger -->
  5. <report
  6. id="action_print_report_general_ledger_qweb"
  7. model="general.ledger.report.wizard"
  8. string="General Ledger"
  9. report_type="qweb-pdf"
  10. menu="False"
  11. name="account_financial_report.general_ledger"
  12. file="account_financial_report.general_ledger"
  13. />
  14. <report
  15. id="action_print_report_general_ledger_html"
  16. model="general.ledger.report.wizard"
  17. string="General Ledger"
  18. report_type="qweb-html"
  19. menu="False"
  20. name="account_financial_report.general_ledger"
  21. file="account_financial_report.general_ledger"
  22. />
  23. <!-- Journal Ledger -->
  24. <report id="action_print_journal_ledger_wizard_qweb"
  25. model="journal.ledger.report.wizard"
  26. report_type="qweb-pdf"
  27. menu="False"
  28. string="Journal Ledger"
  29. name="account_financial_report.journal_ledger"
  30. file="account_financial_report.journal_ledger"
  31. />
  32. <report id="action_print_journal_ledger_wizard_html"
  33. model="journal.ledger.report.wizard"
  34. report_type="qweb-html"
  35. menu="False"
  36. string="Journal Ledger"
  37. name="account_financial_report.journal_ledger"
  38. file="account_financial_report.journal_ledger"
  39. />
  40. <!-- Trial Balance -->
  41. <report
  42. id="action_report_trial_balance_qweb"
  43. model="trial.balance.report.wizard"
  44. string="Trial Balance"
  45. menu="False"
  46. report_type="qweb-pdf"
  47. name="account_financial_report.trial_balance"
  48. file="account_financial_report.trial_balance"
  49. />
  50. <report
  51. id="action_report_trial_balance_html"
  52. model="trial.balance.report.wizard"
  53. string="Trial Balance"
  54. menu="False"
  55. report_type="qweb-html"
  56. name="account_financial_report.trial_balance"
  57. file="account_financial_report.trial_balance"
  58. />
  59. <!-- Open Items -->
  60. <report
  61. id="action_print_report_open_items_qweb"
  62. model="open.items.report.wizard"
  63. string="Open Items"
  64. menu="False"
  65. report_type="qweb-pdf"
  66. name="account_financial_report.open_items"
  67. file="account_financial_report.open_items"
  68. />
  69. <report
  70. id="action_print_report_open_items_html"
  71. model="open.items.report.wizard"
  72. string="Open Items"
  73. menu="False"
  74. report_type="qweb-html"
  75. name="account_financial_report.open_items"
  76. file="account_financial_report.open_items"
  77. />
  78. <!-- Aged Partner Balance -->
  79. <report
  80. id="action_print_report_aged_partner_balance_qweb"
  81. model="aged.partner.balance.report.wizard"
  82. string="Aged Partner Balance"
  83. report_type="qweb-pdf"
  84. menu="False"
  85. name="account_financial_report.aged_partner_balance"
  86. file="account_financial_report.aged_partner_balance"
  87. />
  88. <report
  89. id="action_print_report_aged_partner_balance_html"
  90. model="aged.partner.balance.report.wizard"
  91. string="Aged Partner Balance"
  92. report_type="qweb-html"
  93. menu="False"
  94. name="account_financial_report.aged_partner_balance"
  95. file="account_financial_report.aged_partner_balance"
  96. />
  97. <!-- VAT Report -->
  98. <report
  99. id="action_print_report_vat_report_qweb"
  100. model="vat.report.wizard"
  101. string="VAT Report"
  102. report_type="qweb-pdf"
  103. menu="False"
  104. name="account_financial_report.vat_report"
  105. file="account_financial_report.vat_report"
  106. />
  107. <report
  108. id="action_print_report_vat_report_html"
  109. model="vat.report.wizard"
  110. string="VAT Report"
  111. report_type="qweb-html"
  112. menu="False"
  113. name="account_financial_report.vat_report"
  114. file="account_financial_report.vat_report"
  115. />
  116. <!-- PDF REPORTS : paperformat -->
  117. <record id="report_qweb_paperformat" model="report.paperformat">
  118. <field name="name">Account financial report qweb paperformat</field>
  119. <field name="default" eval="True"/>
  120. <field name="format">custom</field>
  121. <field name="page_height">297</field>
  122. <field name="page_width">210</field>
  123. <field name="orientation">Portrait</field>
  124. <field name="margin_top">12</field>
  125. <field name="margin_bottom">8</field>
  126. <field name="margin_left">5</field>
  127. <field name="margin_right">5</field>
  128. <field name="header_line" eval="False"/>
  129. <field name="header_spacing">10</field>
  130. <field name="dpi">110</field>
  131. </record>
  132. <record id="action_print_report_general_ledger_qweb" model="ir.actions.report">
  133. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  134. </record>
  135. <record id="action_print_journal_ledger_wizard_qweb" model="ir.actions.report">
  136. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  137. </record>
  138. <record id="action_report_trial_balance_qweb" model="ir.actions.report">
  139. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  140. </record>
  141. <record id="action_print_report_open_items_qweb" model="ir.actions.report">
  142. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  143. </record>
  144. <record id="action_print_report_aged_partner_balance_qweb" model="ir.actions.report">
  145. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  146. </record>
  147. <record id="action_print_report_vat_report_qweb" model="ir.actions.report">
  148. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  149. </record>
  150. <!-- XLSX REPORTS -->
  151. <record id="action_report_general_ledger_xlsx" model="ir.actions.report">
  152. <field name="name">General Ledger XLSX</field>
  153. <field name="model">general.ledger.report.wizard</field>
  154. <field name="type">ir.actions.report</field>
  155. <field name="report_name">a_f_r.report_general_ledger_xlsx</field>
  156. <field name="report_type">xlsx</field>
  157. <field name="report_file">report_general_ledger</field>
  158. </record>
  159. <record id="action_report_journal_ledger_xlsx" model="ir.actions.report">
  160. <field name="name">Journal Ledger XLSX</field>
  161. <field name="model">journal.ledger.report.wizard</field>
  162. <field name="type">ir.actions.report</field>
  163. <field name="report_name">a_f_r.report_journal_ledger_xlsx</field>
  164. <field name="report_type">xlsx</field>
  165. <field name="report_file">report_journal_ledger</field>
  166. </record>
  167. <record id="action_report_trial_balance_xlsx" model="ir.actions.report">
  168. <field name="name">Trial Balance XLSX</field>
  169. <field name="model">trial.balance.report.wizard</field>
  170. <field name="type">ir.actions.report</field>
  171. <field name="report_name">a_f_r.report_trial_balance_xlsx</field>
  172. <field name="report_type">xlsx</field>
  173. <field name="report_file">report_trial_balance</field>
  174. </record>
  175. <record id="action_report_open_items_xlsx" model="ir.actions.report">
  176. <field name="name">Open Items XLSX</field>
  177. <field name="model">open.items.report.wizard</field>
  178. <field name="type">ir.actions.report</field>
  179. <field name="report_name">a_f_r.report_open_items_xlsx</field>
  180. <field name="report_type">xlsx</field>
  181. <field name="report_file">report_open_items</field>
  182. </record>
  183. <record id="action_report_aged_partner_balance_xlsx" model="ir.actions.report">
  184. <field name="name">Aged Partner Balance XLSX</field>
  185. <field name="model">aged.partner.balance.report.wizard</field>
  186. <field name="type">ir.actions.report</field>
  187. <field name="report_name">a_f_r.report_aged_partner_balance_xlsx</field>
  188. <field name="report_type">xlsx</field>
  189. <field name="report_file">report_aged_partner_balance</field>
  190. </record>
  191. <record id="action_report_vat_report_xlsx" model="ir.actions.report">
  192. <field name="name">VAT Report XLSX</field>
  193. <field name="model">vat.report.wizard</field>
  194. <field name="type">ir.actions.report</field>
  195. <field name="report_name">a_f_r.report_vat_report_xlsx</field>
  196. <field name="report_type">xlsx</field>
  197. <field name="report_file">report_vat_report</field>
  198. </record>
  199. </odoo>