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.

31 lines
769 B

  1. # Copyright 2015 ACSONE SA/NV (<http://acsone.eu>)
  2. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
  3. {
  4. 'name': "Base report xlsx",
  5. 'summary': """
  6. Base module to create xlsx report""",
  7. 'author': 'ACSONE SA/NV,'
  8. 'Creu Blanca,'
  9. 'Odoo Community Association (OCA)',
  10. 'website': "http://github.com/oca/reporting-engine",
  11. 'category': 'Reporting',
  12. 'version': '11.0.1.0.0',
  13. 'license': 'AGPL-3',
  14. 'external_dependencies': {
  15. 'python': [
  16. 'xlsxwriter',
  17. 'xlrd',
  18. ],
  19. },
  20. 'depends': [
  21. 'base', 'web',
  22. ],
  23. 'data': [
  24. 'views/webclient_templates.xml',
  25. ],
  26. 'demo': [
  27. 'demo/report.xml',
  28. ],
  29. 'installable': True,
  30. }