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.

79 lines
3.1 KiB

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