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.

78 lines
2.0 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. Excel report engine
  6. ===================
  7. This module adds Excel export capabilities to the standard odoo reporting
  8. engine.
  9. Usage
  10. =====
  11. In order to create an Excel report you can:
  12. - define a report of type 'xls'
  13. - pass ``{'xls_export': 1}`` via the context to the report create method
  14. The ``report_xls`` class contains a number of attributes and methods to
  15. facilitate the creation XLS reports in OpenERP.
  16. * cell types
  17. Supported cell types : text, number, boolean, date.
  18. * cell styles
  19. The predefined cell style definitions result in a consistent
  20. look and feel of the OpenERP Excel reports.
  21. * cell formulas
  22. Cell formulas can be easily added with the help of the ``rowcol_to_cell()``
  23. function which you can import from the ``utils.py`` module.
  24. * Excel templates
  25. It is possible to define Excel templates which can be adapted
  26. by 'inherited' modules.
  27. Download the ``account_move_line_report_xls`` module
  28. from http://apps.odoo.com as example.
  29. * XLS with multiple sheets
  30. Download the ``account_journal_report_xls`` module
  31. from http://apps.odoo.com as example.
  32. Bug Tracker
  33. ===========
  34. Bugs are tracked on `GitHub Issues
  35. <https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
  36. check there if your issue has already been reported. If you spotted it first,
  37. help us smashing it by providing a detailed and welcomed feedback.
  38. Credits
  39. =======
  40. Contributors
  41. ------------
  42. * Noviat
  43. Maintainer
  44. ----------
  45. .. image:: https://odoo-community.org/logo.png
  46. :alt: Odoo Community Association
  47. :target: https://odoo-community.org
  48. This module is maintained by the OCA.
  49. OCA, or the Odoo Community Association, is a nonprofit organization whose
  50. mission is to support the collaborative development of Odoo features and
  51. promote its widespread use.
  52. To contribute to this module, please visit https://odoo-community.org.