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
28 lines
676 B
# Copyright 2019 Creu Blanca
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
{
|
|
'name': "Base report csv",
|
|
|
|
'summary': "Base module to create csv report",
|
|
'author': 'Creu Blanca,'
|
|
'Odoo Community Association (OCA)',
|
|
'website': "https://github.com/oca/reporting-engine",
|
|
'category': 'Reporting',
|
|
'version': '12.0.1.0.0',
|
|
'license': 'AGPL-3',
|
|
'external_dependencies': {
|
|
'python': [
|
|
'csv',
|
|
],
|
|
},
|
|
'depends': [
|
|
'base', 'web',
|
|
],
|
|
'data': [
|
|
'views/webclient_templates.xml',
|
|
],
|
|
'demo': [
|
|
'demo/report.xml',
|
|
],
|
|
'installable': True,
|
|
}
|