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
987 B

  1. # Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
  2. # License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
  3. {
  4. "name": "XML Reports",
  5. "version": "14.0.1.0.1",
  6. "category": "Reporting",
  7. "website": "https://github.com/OCA/reporting-engine",
  8. "author": "Tecnativa, Odoo Community Association (OCA), Avoin.Systems",
  9. "license": "AGPL-3",
  10. "installable": True,
  11. "application": False,
  12. "summary": "Allow to generate XML reports",
  13. "depends": ["web"],
  14. "data": [
  15. "views/webclient_templates.xml", # add js handlers for action manager
  16. "views/ir_actions_report_view.xml",
  17. ],
  18. "demo": [
  19. "demo/report.xml", # register report in the system
  20. "demo/demo_report.xml", # report body definition
  21. ],
  22. "external_dependencies": {
  23. "python": [ # Python third party libraries required for module
  24. "lxml" # XML and HTML with Python
  25. ]
  26. },
  27. "post_init_hook": "post_init_hook",
  28. }