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.

208 lines
7.6 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 developper to create or modify a report: the report is created and modified with Libreoffice. So this reporting engine has a fully WYSIWYG report developpment 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.
  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 reporting engine is an alternative to `Aeroo <https://github.com/aeroo/aeroo_reports>`_: these 2 reporting engines have similar features but their codes are completely different.
  17. Installation
  18. ============
  19. You must install 2 additionnal python libs:
  20. .. code::
  21. pip install py3o.template
  22. pip install py3o.formats
  23. To allow the conversion of ODT or ODS reports to other formats (PDF, DOC, DOCX, etc.), you must install several additionnal components and Python libs:
  24. * `Py3o Fusion server <https://bitbucket.org/faide/py3o.fusion>`_,
  25. * `Py3o render server <https://bitbucket.org/faide/py3o.renderserver>`_,
  26. * a Java Runtime Environment (JRE), which can be OpenJDK,
  27. * Libreoffice started in the background in headless mode,
  28. * the Java driver for Libreoffice (Juno).
  29. It is also possible to use the Python driver for Libreoffice (PyUNO), but it is recommended to use the Java driver because it is more stable.
  30. The installation procedure below uses the Java driver. It has been successfully tested on Ubuntu 16.04 LTS ; if you use another OS, you may have to change a few details.
  31. Installation of py3o.fusion:
  32. .. code::
  33. pip install py3o.fusion
  34. pip install service-identity
  35. Installation of py3o.renderserver:
  36. .. code::
  37. pip install py3o.renderserver
  38. Installation of Libreoffice and JRE on Debian/Ubuntu:
  39. .. code::
  40. sudo apt-get install default-jre ure libreoffice-java-common libreoffice-writer
  41. At the end, with the dependencies, you should have 6 py3o python libs:
  42. .. code::
  43. % pip freeze | grep py3o
  44. py3o.formats==0.3
  45. py3o.fusion==0.8.6.dev1
  46. py3o.renderclient==0.2
  47. py3o.renderers.juno==0.7
  48. py3o.renderserver==0.5.1.dev1
  49. py3o.template==0.9.10.dev1
  50. py3o.types==0.1.1
  51. Start the Py3o Fusion server:
  52. .. code::
  53. start-py3o-fusion --debug -s localhost
  54. Start the Py3o render server:
  55. .. code::
  56. start-py3o-renderserver --java=/usr/lib/jvm/default-java/jre/lib/amd64/server/libjvm.so --ure=/usr/lib --office=/usr/lib/libreoffice --driver=juno --sofficeport=8997
  57. On the output of the Py3o render server, the first line looks like:
  58. .. code::
  59. DEBUG:root:Starting JVM: /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so with options: -Djava.class.path=/usr/local/lib/python2.7/dist-packages/py3o/renderers/juno/py3oconverter.jar:/usr/lib/ure/share/java/juh.jar:/usr/lib/ure/share/java/jurt.jar:/usr/lib/ure/share/java/ridl.jar:/usr/lib/ure/share/java/unoloader.jar:/usr/lib/ure/share/java/java_uno.jar:/usr/lib/libreoffice/program/classes/unoil.jar -Xmx150M
  60. After **-Djava.class.path**, there is a list of Java libs with *.jar* extension ; check that each JAR file is really present on your filesystem. On Ubuntu 16.04 LTS, the package *ure* installs several libs in another directory:
  61. * /usr/lib/ure/share/java/juh.jar is located in /usr/share/java/juh.jar
  62. * /usr/lib/ure/share/java/jurt.jar is located in /usr/share/java/jurt.jar
  63. * /usr/lib/ure/share/java/ridl.jar is located in /usr/share/java/ridl.jar
  64. * /usr/lib/ure/share/java/unoloader.jar is located in /usr/share/java/unoloader.jar
  65. * /usr/lib/ure/share/java/java_uno.jar is located in /usr/share/java/java_uno.jar
  66. To work around this problem, you can create a symlink:
  67. .. code::
  68. sudo ln -s /usr /ure
  69. and then use **--ure=/** instead of **--ure=/usr/lib** in the command line of *start-py3o-renderserver*.
  70. To check that the Py3o Fusion server is running fine, visit the URL http://<IP_address>:8765/form. On this web page, under the section *Target format*, make sure that you have a line *This server currently supports these formats: ods, odt, docx, doc, html, docbook, pdf, xls.*.
  71. Configuration
  72. =============
  73. For example, to replace the native invoice report by a custom py3o report, add the following XML file in your custom module:
  74. .. code::
  75. <?xml version="1.0" encoding="utf-8"?>
  76. <odoo>
  77. <record id="account.account_invoices" model="ir.actions.report.xml">
  78. <field name="name">Invoice</field>
  79. <field name="model">account.invoice</field>
  80. <field name="report_name">account.report_invoice</field>
  81. <field name="report_type">py3o</field>
  82. <field name="py3o_filetype">odt</field>
  83. <field name="module">my_custom_module_base</field>
  84. <field name="py3o_template_fallback">report/account_invoice.odt</field>
  85. </record>
  86. </odoo>
  87. 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*.
  88. If you want an invoice in PDF format instead of ODT format, the XML file should look like:
  89. .. code::
  90. <?xml version="1.0" encoding="utf-8"?>
  91. <odoo>
  92. <record id="local_py3o_server" model="py3o.server">
  93. <field name="url">http://localhost:8765/form</field>
  94. </record>
  95. <record id="account.account_invoices" model="ir.actions.report.xml">
  96. <field name="name">Invoice</field>
  97. <field name="model">account.invoice</field>
  98. <field name="report_name">account.report_invoice</field>
  99. <field name="report_type">py3o</field>
  100. <field name="py3o_filetype">pdf</field>
  101. <field name="py3o_server_id" ref="local_py3o_server"/>
  102. <field name="module">my_custom_module_base</field>
  103. <field name="py3o_template_fallback">report/account_invoice.odt</field>
  104. </record>
  105. </odoo>
  106. Usage
  107. =====
  108. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  109. :alt: Try me on Runbot
  110. :target: https://runbot.odoo-community.org/runbot/143/10.0
  111. Known issues / Roadmap
  112. ======================
  113. * generate barcode ?
  114. Bug Tracker
  115. ===========
  116. Bugs are tracked on `GitHub Issues
  117. <https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
  118. check there if your issue has already been reported. If you spotted it first,
  119. help us smashing it by providing a detailed and welcomed feedback.
  120. Credits
  121. =======
  122. Contributors
  123. ------------
  124. * Florent Aide (`XCG Consulting <http://odoo.consulting/>`_)
  125. * Laurent Mignon (Acsone)
  126. Maintainer
  127. ----------
  128. .. image:: https://odoo-community.org/logo.png
  129. :alt: Odoo Community Association
  130. :target: https://odoo-community.org
  131. This module is maintained by the OCA.
  132. OCA, or the Odoo Community Association, is a nonprofit organization whose
  133. mission is to support the collaborative development of Odoo features and
  134. promote its widespread use.
  135. To contribute to this module, please visit https://odoo-community.org.