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.

151 lines
5.6 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. <!-- PDF REPORTS : paperformat -->
  73. <record id="report_qweb_paperformat" model="report.paperformat">
  74. <field name="name">Account financial report qweb paperformat</field>
  75. <field name="default" eval="True"/>
  76. <field name="format">custom</field>
  77. <field name="page_height">297</field>
  78. <field name="page_width">210</field>
  79. <field name="orientation">Portrait</field>
  80. <field name="margin_top">12</field>
  81. <field name="margin_bottom">8</field>
  82. <field name="margin_left">5</field>
  83. <field name="margin_right">5</field>
  84. <field name="header_line" eval="False"/>
  85. <field name="header_spacing">10</field>
  86. <field name="dpi">110</field>
  87. </record>
  88. <record id="action_report_general_ledger_qweb" model="ir.actions.report">
  89. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  90. </record>
  91. <record id="action_report_trial_balance_qweb" model="ir.actions.report">
  92. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  93. </record>
  94. <record id="action_report_open_items_qweb" model="ir.actions.report">
  95. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  96. </record>
  97. <record id="action_report_aged_partner_balance_qweb"
  98. model="ir.actions.report">
  99. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  100. </record>
  101. <!-- XLSX REPORTS -->
  102. <record id="action_report_general_ledger_xlsx" model="ir.actions.report">
  103. <field name="name">General Ledger XLSX</field>
  104. <field name="model">report_general_ledger</field>
  105. <field name="type">ir.actions.report</field>
  106. <field name="report_name">a_f_r.report_general_ledger_xlsx</field>
  107. <field name="report_type">xlsx</field>
  108. <field name="report_file">report_general_ledger</field>
  109. </record>
  110. <record id="action_report_trial_balance_xlsx" model="ir.actions.report">
  111. <field name="name">Trial Balance XLSX</field>
  112. <field name="model">report_trial_balance</field>
  113. <field name="type">ir.actions.report</field>
  114. <field name="report_name">a_f_r.report_trial_balance_xlsx</field>
  115. <field name="report_type">xlsx</field>
  116. <field name="report_file">report_trial_balance</field>
  117. </record>
  118. <record id="action_report_open_items_xlsx" model="ir.actions.report">
  119. <field name="name">Open Items XLSX</field>
  120. <field name="model">report_open_items</field>
  121. <field name="type">ir.actions.report</field>
  122. <field name="report_name">a_f_r.report_open_items_xlsx</field>
  123. <field name="report_type">xlsx</field>
  124. <field name="report_file">report_open_items</field>
  125. </record>
  126. <record id="action_report_aged_partner_balance_xlsx" model="ir.actions.report">
  127. <field name="name">Aged Partner Balance XLSX</field>
  128. <field name="model">report_aged_partner_balance</field>
  129. <field name="type">ir.actions.report</field>
  130. <field name="report_name">a_f_r.report_aged_partner_balance_xlsx</field>
  131. <field name="report_type">xlsx</field>
  132. <field name="report_file">report_aged_partner_balance</field>
  133. </record>
  134. </odoo>