2021-03-23 19:37:36 +00:00
|
|
|
# Copyright 2015-2018 Onestein (<http://www.onestein.eu>)
|
|
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'BI View Editor',
|
|
|
|
'summary': 'Graphical BI views builder for Odoo',
|
|
|
|
'images': ['static/description/main_screenshot.png'],
|
|
|
|
'author': 'Onestein,Odoo Community Association (OCA)',
|
|
|
|
'license': 'AGPL-3',
|
|
|
|
'website': 'https://gitlab.com/flectra-community/reporting-engine',
|
|
|
|
'category': 'Reporting',
|
2021-05-27 10:47:06 +00:00
|
|
|
'version': '1.0.1.0.0',
|
2021-03-23 19:37:36 +00:00
|
|
|
'depends': [
|
|
|
|
'base',
|
|
|
|
'web',
|
|
|
|
'base_sparse_field'
|
|
|
|
],
|
|
|
|
'data': [
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'security/rules.xml',
|
|
|
|
'templates/assets_template.xml',
|
|
|
|
'views/bve_view.xml',
|
|
|
|
],
|
|
|
|
'qweb': [
|
|
|
|
'static/src/xml/bi_view_editor.xml'
|
|
|
|
],
|
|
|
|
'post_load': 'post_load',
|
|
|
|
'uninstall_hook': 'uninstall_hook',
|
|
|
|
'installable': True,
|
|
|
|
}
|