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.

28 lines
676 B

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