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
28 lines
987 B
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
|
|
# License AGPL-3.0 or later (https://www.gnuorg/licenses/agpl.html).
|
|
{
|
|
"name": "XML Reports",
|
|
"version": "14.0.1.0.0",
|
|
"category": "Reporting",
|
|
"website": "https://github.com/OCA/reporting-engine",
|
|
"author": "Tecnativa, Odoo Community Association (OCA), Avoin.Systems",
|
|
"license": "AGPL-3",
|
|
"installable": True,
|
|
"application": False,
|
|
"summary": "Allow to generate XML reports",
|
|
"depends": ["web"],
|
|
"data": [
|
|
"views/webclient_templates.xml", # add js handlers for action manager
|
|
"views/ir_actions_report_view.xml",
|
|
],
|
|
"demo": [
|
|
"demo/report.xml", # register report in the system
|
|
"demo/demo_report.xml", # report body definition
|
|
],
|
|
"external_dependencies": {
|
|
"python": [ # Python third party libraries required for module
|
|
"lxml" # XML and HTML with Python
|
|
]
|
|
},
|
|
"post_init_hook": "post_init_hook",
|
|
}
|