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.

74 lines
2.7 KiB

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