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.

82 lines
2.6 KiB

  1. # -*- encoding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. #
  6. # Copyright (c) 2013-2014 Noviat nv/sa (www.noviat.com). All rights reserved.
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU Affero General Public License as
  10. # published by the Free Software Foundation, either version 3 of the
  11. # License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU Affero General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU Affero General Public License
  19. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. #
  21. ##############################################################################
  22. {
  23. 'name': 'Excel report engine',
  24. 'version': '0.6',
  25. 'license': 'AGPL-3',
  26. 'author': "Noviat,Odoo Community Association (OCA)",
  27. 'website': 'http://www.noviat.com',
  28. 'category': 'Reporting',
  29. 'description': """
  30. Excel report engine
  31. ===================
  32. This module adds Excel export capabilities to the standard OpenERP reporting
  33. engine.
  34. Report development
  35. ''''''''''''''''''
  36. In order to create an Excel report you can\n
  37. - define a report of type 'xls'
  38. - pass ``{'xls_export': 1}`` via the context to the report create method
  39. The ``report_xls`` class contains a number of attributes and methods to
  40. facilitate the creation XLS reports in OpenERP.
  41. * cell types
  42. Supported cell types : text, number, boolean, date.
  43. * cell styles
  44. The predefined cell style definitions result in a consistent
  45. look and feel of the OpenERP Excel reports.
  46. * cell formulas
  47. Cell formulas can be easily added with the help of the ``rowcol_to_cell()``
  48. function which you can import from the ``utils.py`` module.
  49. * Excel templates
  50. It is possible to define Excel templates which can be adapted
  51. by 'inherited' modules.
  52. Download the ``account_move_line_report_xls`` module
  53. from http://apps.openerp.com as example.
  54. * XLS with multiple sheets
  55. Download the ``account_journal_report_xls`` module
  56. from http://apps.openerp.com as example.
  57. Development assistance
  58. ''''''''''''''''''''''
  59. Contact info@noviat.com for help with the development of
  60. Excel reports in OpenERP.
  61. """,
  62. 'depends': ['base'],
  63. 'external_dependencies': {'python': ['xlwt']},
  64. 'active': False,
  65. 'installable': True,
  66. }
  67. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: