mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-15 02:32:05 +00:00
34 lines
990 B
Python
34 lines
990 B
Python
|
# Copyright (C) 2015 Akretion (<http://www.akretion.com>)
|
||
|
# @author: Florian da Costa
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||
|
|
||
|
{
|
||
|
"name": "SQL Export",
|
||
|
"version": "3.0.1.0.0",
|
||
|
"author": "Akretion,GRAP,Odoo Community Association (OCA)",
|
||
|
"maintainers": ["legalsylvain"],
|
||
|
"website": "https://gitlab.com/flectra-community/reporting-engine",
|
||
|
"license": "AGPL-3",
|
||
|
"category": "Generic Modules/Others",
|
||
|
"summary": "Export data in csv file with SQL requests",
|
||
|
"depends": [
|
||
|
"spreadsheet_dashboard",
|
||
|
"sql_request_abstract",
|
||
|
],
|
||
|
"data": [
|
||
|
"views/sql_export_view.xml",
|
||
|
"wizard/wizard_file_view.xml",
|
||
|
"security/sql_export_security.xml",
|
||
|
"security/ir.model.access.csv",
|
||
|
],
|
||
|
"demo": [
|
||
|
"demo/sql_export.xml",
|
||
|
],
|
||
|
"assets": {
|
||
|
"web.assets_backend": [
|
||
|
"sql_export/static/src/scss/modal_properties.scss",
|
||
|
]
|
||
|
},
|
||
|
"installable": True,
|
||
|
}
|