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.

69 lines
2.8 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. <!--PaperFormat A4 internal open invoice-->
  13. <record id="open_invoice_report_format_a4_horizontal" model="report.paperformat">
  14. <field name="name">Open Invoice Report Internal A4 Horizontal</field>
  15. <field name="margin_top">30</field>
  16. <field name="margin_bottom">20</field>
  17. <field name="header_spacing">20</field>
  18. <field name="orientation">Landscape</field>
  19. </record>
  20. <!--report open invoice-->
  21. <report
  22. string="Open Invoice Report"
  23. id="report_open_invoice_report"
  24. model="open.invoice.wizard"
  25. report_type="qweb-pdf"
  26. name="account_financial_report_qweb.open_invoice_report_qweb"
  27. file="account_financial_report_qweb.open_invoice_report_qweb"/>
  28. <record id="report_open_invoice_report" model="ir.actions.report.xml">
  29. <field name="paperformat_id" ref="account_financial_report_qweb.open_invoice_report_format_a4_horizontal"/>
  30. </record>
  31. <record id="general_ledger_xls_export" model="ir.actions.report.xml">
  32. <field name="name">General Ledger XLSX report</field>
  33. <field name="model">ledger.report.wizard</field>
  34. <field name="type">ir.actions.report.xml</field>
  35. <field name="report_name">ledger.report.wizard.xlsx</field>
  36. <field name="report_type">xlsx</field>
  37. <field name="auto" eval="False"/>
  38. </record>
  39. <record id="report_qweb_paperformat" model="report.paperformat">
  40. <field name="name">Account financial report qweb paperformat</field>
  41. <field name="default" eval="True"/>
  42. <field name="format">custom</field>
  43. <field name="page_height">297</field>
  44. <field name="page_width">210</field>
  45. <field name="orientation">Portrait</field>
  46. <field name="margin_top">12</field>
  47. <field name="margin_bottom">8</field>
  48. <field name="margin_left">5</field>
  49. <field name="margin_right">5</field>
  50. <field name="header_line" eval="False"/>
  51. <field name="header_spacing">10</field>
  52. <field name="dpi">110</field>
  53. </record>
  54. <record id="action_report_general_ledger_qweb" model="ir.actions.report.xml">
  55. <field name="paperformat_id" ref="report_qweb_paperformat"/>
  56. </record>
  57. </data>
  58. </openerp>