mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
new module bi_sql_editor [IMP] function to guess model for many2one field; [ADD] security
This commit is contained in:
committed by
David James
parent
db7ed7e8c1
commit
a4925673f3
28
bi_sql_editor/__openerp__.py
Normal file
28
bi_sql_editor/__openerp__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
|
||||
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
{
|
||||
'name': 'BI SQL Editor',
|
||||
'summary': "BI Views builder, based on Materialized or Normal SQL Views",
|
||||
'version': '8.0.1.0.0',
|
||||
'license': 'AGPL-3',
|
||||
'category': 'Reporting',
|
||||
'author': 'GRAP,Odoo Community Association (OCA)',
|
||||
'website': 'https://www.odoo-community.org',
|
||||
'depends': [
|
||||
'sql_request_abstract',
|
||||
],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/view_bi_sql_view.xml',
|
||||
'views/action.xml',
|
||||
'views/menu.xml',
|
||||
],
|
||||
'demo': [
|
||||
'demo/res_groups.xml',
|
||||
'demo/bi_sql_view.xml',
|
||||
],
|
||||
'installable': True,
|
||||
}
|
||||
Reference in New Issue
Block a user