mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
- split view in two files, according OCA guidelines; - add legalsylvain as maintainers - use abstract tree and form views - refactor : split demo data into two files, according OCA guidelines - replace obsolete base.menu_reporting_dashboard by spreadsheet_dashboard entries - update translation - prevent usage of export with parameters, that requires extra work - do not skip 'check execution' when confirming sql exports
31 lines
926 B
Python
31 lines
926 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": "16.0.1.0.0",
|
|
"author": "Akretion,GRAP,Odoo Community Association (OCA)",
|
|
"maintainers": ["legalsylvain"],
|
|
"website": "https://github.com/OCA/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",
|
|
"views/ir_model_fields_view.xml",
|
|
"wizard/wizard_file_view.xml",
|
|
"security/sql_export_security.xml",
|
|
"security/ir.model.access.csv",
|
|
],
|
|
"demo": [
|
|
"demo/ir_model_fields.xml",
|
|
"demo/sql_export.xml",
|
|
],
|
|
"installable": True,
|
|
}
|