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.

32 lines
741 B

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