mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-14 10:12:05 +00:00
25 lines
880 B
Python
25 lines
880 B
Python
# 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": "2.0.1.0.3",
|
|
"category": "Reporting",
|
|
"website": "https://gitlab.com/flectra-community/reporting-engine",
|
|
"development_status": "Production/Stable",
|
|
"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
|
|
],
|
|
"post_init_hook": "post_init_hook",
|
|
}
|