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.

88 lines
2.4 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. .. image:: https://img.shields.io/badge/license-AGPL--3-blue.png
  2. :target: https://www.gnu.org/licenses/agpl
  3. :alt: License: AGPL-3
  4. ===========================
  5. Excel report engine helpers
  6. ===========================
  7. This module provides a set of tools to facilitate the creation of excel reports with format xlsx.
  8. Usage
  9. =====
  10. In order to create an Excel report you can define a report of type 'xlsx' in a static or dynamic way:
  11. * Static syntax: cf. ``account_move_line_report_xls`` for an example.
  12. * Dynamic syntax: cf. ``report_xlsx_helper_demo`` for an example
  13. The ``AbstractReportXlsx`` class contains a number of attributes and methods to
  14. facilitate the creation excel reports in Odoo.
  15. * Cell types
  16. string, number, boolean, datetime.
  17. * Cell formats
  18. The predefined cell formats result in a consistent
  19. look and feel of the Odoo Excel reports.
  20. * Cell formulas
  21. Cell formulas can be easily added with the help of the ``_rowcol_to_cell()`` method.
  22. * Excel templates
  23. It is possible to define Excel templates which can be adapted
  24. by 'inherited' modules.
  25. Download the ``account_move_line_report_xls`` module
  26. from http://apps.odoo.com as example.
  27. * Excel with multiple sheets
  28. Download the ``account_asset_management_xls`` module
  29. from http://apps.odoo.com as example.
  30. Installation
  31. ============
  32. This module requires report_xlsx version 11.0.1.0.3 or higher.
  33. Configuration and Usage
  34. =======================
  35. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  36. :alt: Try me on Runbot
  37. :target: https://runbot.odoo-community.org/runbot/143/11.0
  38. Bug Tracker
  39. ===========
  40. Bugs are tracked on `GitHub Issues
  41. <https://github.com/OCA/reporting-engine/issues>`_. In case of trouble, please
  42. check there if your issue has already been reported. If you spotted it first,
  43. help us smashing it by providing a detailed and welcomed feedback.
  44. Credits
  45. =======
  46. Contributors
  47. ------------
  48. * Luc De Meyer <luc.demeyer@noviat.com>
  49. Maintainer
  50. ----------
  51. .. image:: https://odoo-community.org/logo.png
  52. :alt: Odoo Community Association
  53. :target: https://odoo-community.org
  54. This module is maintained by the OCA.
  55. OCA, or the Odoo Community Association, is a nonprofit organization whose
  56. mission is to support the collaborative development of Odoo features and
  57. promote its widespread use.
  58. To contribute to this module, please visit http://odoo-community.org.