OCA reporting engine fork for dev and update.
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.

217 lines
8.8 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. ===========
  5. Report Py3o
  6. ===========
  7. The py3o reporting engine is a reporting engine for Odoo based on `Libreoffice <http://www.libreoffice.org/>`_:
  8. * the report is created with Libreoffice (ODT or ODS),
  9. * the report is stored on the server in OpenDocument format (.odt or .ods file)
  10. * the report is sent to the user in OpenDocument format or in any output format supported by Libreoffice (PDF, HTML, DOC, DOCX, Docbook, XLS, etc.)
  11. The key advantages of a Libreoffice based reporting engine are:
  12. * no need to be a developer to create or modify a report: the report is created and modified with Libreoffice. So this reporting engine has a full WYSIWYG report development tool!
  13. * For a PDF report in A4/Letter format, it's easier to develop it with a tool such as Libreoffice that is designed to create A4/Letter documents than to develop it in HTML/CSS, also some print peculiarities (backgrounds, margin boxes) are not very well supported by the HTML/CSS based solutions.
  14. * If you want your users to be able to modify the document after its generation by Odoo, just configure the document with ODT output (or DOC or DOCX) and the user will be able to modify the document with Libreoffice (or Word) after its generation by Odoo.
  15. * Easy development of spreadsheet reports in ODS format (XLS output possible).
  16. This module *report_py3o* is the base module for the Py3o reporting engine. If used alone, it will spawn a libreoffice process for each ODT to PDF (or ODT to DOCX, ..) document conversion. This is slow and can become a problem if you have a lot of reports to convert from ODT to another format. In this case, you should consider the additionnal module *report_py3o_fusion_server* which is designed to work with a libreoffice daemon. With *report_py3o_fusion_server*, the technical environnement is more complex to setup because you have to install additionnal software components and run 2 daemons, but you have much better performances and you can configure the libreoffice PDF export options in Odoo (allows to generate PDF forms, PDF/A documents, password-protected PDFs, watermarked PDFs, etc.).
  17. This reporting engine is an alternative to `Aeroo <https://github.com/aeroo-community/aeroo_reports>`_: these two reporting engines have similar features but their implementation is entirely different. You cannot use aeroo templates as drop in replacement though, you'll have to change a few details.
  18. Installation
  19. ============
  20. Install the required python libs:
  21. .. code::
  22. pip install py3o.template
  23. pip install py3o.formats
  24. To allow the conversion of ODT or ODS reports to other formats (PDF, DOC, DOCX, etc.), install libreoffice:
  25. .. code::
  26. apt-get --no-install-recommends install libreoffice
  27. Configuration
  28. =============
  29. For example, to replace the native invoice report by a custom py3o report, add the following XML file in your custom module:
  30. .. code::
  31. <?xml version="1.0" encoding="utf-8"?>
  32. <odoo>
  33. <record id="account.account_invoices" model="ir.actions.report.xml">
  34. <field name="report_type">py3o</field>
  35. <field name="py3o_filetype">odt</field>
  36. <field name="module">my_custom_module_base</field>
  37. <field name="py3o_template_fallback">report/account_invoice.odt</field>
  38. </record>
  39. </odoo>
  40. where *my_custom_module_base* is the name of the custom Odoo module. In this example, the invoice ODT file is located in *my_custom_module_base/report/account_invoice.odt*.
  41. It's also possible to reference a template located in a trusted path of your
  42. Odoo server. In this case you must let the *module* entry empty and specify
  43. the path to the template as *py3o_template_fallback*.
  44. .. code::
  45. <?xml version="1.0" encoding="utf-8"?>
  46. <odoo>
  47. <record id="account.account_invoices" model="ir.actions.report.xml">
  48. <field name="report_type">py3o</field>
  49. <field name="py3o_filetype">odt</field>
  50. <field name="py3o_template_fallback">/odoo/templates/py3o/report/account_invoice.odt</field>
  51. </record>
  52. </odoo>
  53. Moreover, you must also modify the Odoo server configuration file to declare
  54. the allowed root directory for your py3o templates. Only templates located
  55. into this directory can be loaded by py3o report.
  56. .. code::
  57. [options]
  58. ...
  59. [report_py3o]
  60. root_tmpl_path=/odoo/templates/py3o
  61. If you want an invoice in PDF format instead of ODT format, the XML file should look like:
  62. .. code::
  63. <?xml version="1.0" encoding="utf-8"?>
  64. <odoo>
  65. <record id="account.account_invoices" model="ir.actions.report.xml">
  66. <field name="report_type">py3o</field>
  67. <field name="py3o_filetype">pdf</field>
  68. <field name="module">my_custom_module_base</field>
  69. <field name="py3o_template_fallback">report/account_invoice.odt</field>
  70. </record>
  71. </odoo>
  72. If you want to add a new py3o PDF report (and not replace a native report), the XML file should look like this:
  73. .. code::
  74. <?xml version="1.0" encoding="utf-8"?>
  75. <odoo>
  76. <record id="partner_summary_report" model="ir.actions.report.xml">
  77. <field name="name">Partner Summary</field>
  78. <field name="model">res.partner</field>
  79. <field name="report_name">res.partner.summary</field>
  80. <field name="report_type">py3o</field>
  81. <field name="py3o_filetype">pdf</field>
  82. <field name="module">my_custom_module_base</field>
  83. <field name="py3o_template_fallback">report/partner_summary.odt</field>
  84. </record>
  85. <!-- Add entry in "Print" drop-down list -->
  86. <record id="button_partner_summary_report" model="ir.values">
  87. <field name="key2">client_print_multi</field>
  88. <field name="model">res.partner</field>
  89. <field name="name">Partner Summary</field>
  90. <field name="value" eval="'ir.actions.report.xml,%d'%partner_summary_report" />
  91. </record>
  92. </odoo>
  93. Configuration parameters
  94. ------------------------
  95. py3o.conversion_command
  96. The command to be used to run the conversion, ``libreoffice`` by default. If you change this, whatever you set here must accept the parameters ``--headless --convert-to $ext $file`` and put the resulting file into ``$file``'s directory with extension ``$ext``. The command will be started in ``$file``'s directory.
  97. Usage
  98. =====
  99. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  100. :alt: Try me on Runbot
  101. :target: https://runbot.odoo-community.org/runbot/143/10.0
  102. The templating language is `extensively documented <http://py3otemplate.readthedocs.io/en/latest/templating.html>`_, the records are exposed in libreoffice as ``objects``, on which you can also call functions.
  103. Available functions and objects
  104. -------------------------------
  105. user
  106. Browse record of current user
  107. lang
  108. The user's company's language as string (ISO code)
  109. b64decode
  110. ``base64.b64decode``
  111. format_multiline_value(string)
  112. Generate the ODF equivalent of ``<br/>`` and ``&nbsp;`` for multiline fields (ODF is XML internally, so those would be skipped otherwise)
  113. html_sanitize(string)
  114. Sanitize HTML string
  115. time
  116. Python's ``time`` module
  117. display_address(partner)
  118. Return a formatted string of the partner's address
  119. formatLang(value, digits=None, date=False, date_time=False, grouping=True, monetary=False, dp=False, currency_obj=False)
  120. Return a formatted numeric, monetary, date or time value according to the context language and timezone
  121. Sample report templates
  122. -----------------------
  123. Sample py3o report templates for the main Odoo native reports (invoice, sale order, purchase order, picking, ...) are available on the Github project `odoo-py3o-report-templates <https://github.com/akretion/odoo-py3o-report-templates>`_.
  124. Known issues / Roadmap
  125. ======================
  126. * generate barcode ?
  127. * add more detailed example in demo file to showcase features
  128. * add migration guide aeroo -> py3o
  129. Bug Tracker
  130. ===========
  131. Bugs are tracked on `GitHub Issues
  132. <https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
  133. check there if your issue has already been reported. If you spotted it first,
  134. help us smashing it by providing a detailed and welcomed feedback.
  135. Credits
  136. =======
  137. Contributors
  138. ------------
  139. * Florent Aide (`XCG Consulting <http://odoo.consulting/>`_)
  140. * Laurent Mignon <laurent.mignon@acsone.eu>,
  141. * Alexis de Lattre <alexis.delattre@akretion.com>,
  142. * Guewen Baconnier <guewen.baconnier@camptocamp.com>
  143. * Omar Castiñeira <omar@comunitea.com>
  144. * Holger Brunn <hbrunn@therp.nl>
  145. Maintainer
  146. ----------
  147. .. image:: https://odoo-community.org/logo.png
  148. :alt: Odoo Community Association
  149. :target: https://odoo-community.org
  150. This module is maintained by the OCA.
  151. OCA, or the Odoo Community Association, is a nonprofit organization whose
  152. mission is to support the collaborative development of Odoo features and
  153. promote its widespread use.
  154. To contribute to this module, please visit https://odoo-community.org.