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.

76 lines
2.9 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <openerp>
  3. <data>
  4. <!-- PDF REPORTS -->
  5. <report
  6. id="action_report_general_ledger_qweb"
  7. model="report_general_ledger_qweb"
  8. string="General Ledger"
  9. report_type="qweb-pdf"
  10. name="account_financial_report_qweb.report_general_ledger_qweb"
  11. file="account_financial_report_qweb.report_general_ledger_qweb"
  12. />
  13. <report
  14. id="action_report_open_items_qweb"
  15. model="report_open_items_qweb"
  16. string="Open Items"
  17. report_type="qweb-pdf"
  18. name="account_financial_report_qweb.report_open_items_qweb"
  19. file="account_financial_report_qweb.report_open_items_qweb"
  20. />
  21. <report
  22. id="action_report_aged_partner_balance_qweb"
  23. model="report_aged_partner_balance_qweb"
  24. string="Aged Partner Balance"
  25. report_type="qweb-pdf"
  26. name="account_financial_report_qweb.report_aged_partner_balance_qweb"
  27. file="account_financial_report_qweb.report_aged_partner_balance_qweb"
  28. />
  29. <!-- PDF REPORTS : paperformat -->
  30. <record id="report_qweb_paperformat" model="report.paperformat">
  31. <field name="name">Account financial report qweb paperformat</field>
  32. <field name="default" eval="True"/>
  33. <field name="format">custom</field>
  34. <field name="page_height">297</field>
  35. <field name="page_width">210</field>
  36. <field name="orientation">Portrait</field>
  37. <field name="margin_top">12</field>
  38. <field name="margin_bottom">8</field>
  39. <field name="margin_left">5</field>
  40. <field name="margin_right">5</field>
  41. <field name="header_line" eval="False"/>
  42. <field name="header_spacing">10</field>
  43. <field name="dpi">110</field>
  44. </record>
  45. <record id="action_report_general_ledger_qweb" model="ir.actions.report.xml">
  46. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  47. </record>
  48. <record id="action_report_open_items_qweb" model="ir.actions.report.xml">
  49. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  50. </record>
  51. <record id="action_report_aged_partner_balance_qweb" model="ir.actions.report.xml">
  52. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  53. </record>
  54. <!-- XLSX REPORTS -->
  55. <record id="action_report_general_ledger_xlsx" model="ir.actions.report.xml">
  56. <field name="name">General Ledger XLSX</field>
  57. <field name="model">report_general_ledger_qweb</field>
  58. <field name="type">ir.actions.report.xml</field>
  59. <field name="report_name">account_financial_report_qweb.report_general_ledger_xlsx</field>
  60. <field name="report_type">xlsx</field>
  61. <field name="auto" eval="False"/>
  62. </record>
  63. </data>
  64. </openerp>