diff --git a/bi_sql_editor/__manifest__.py b/bi_sql_editor/__manifest__.py index 3a909ba72..effbe4dab 100644 --- a/bi_sql_editor/__manifest__.py +++ b/bi_sql_editor/__manifest__.py @@ -5,7 +5,7 @@ { "name": "BI SQL Editor", "summary": "BI Views builder, based on Materialized or Normal SQL Views", - "version": "14.0.1.0.0", + "version": "15.0.1.0.0", "license": "AGPL-3", "category": "Reporting", "author": "GRAP,Odoo Community Association (OCA)", @@ -20,4 +20,5 @@ "demo": ["demo/res_groups_demo.xml", "demo/bi_sql_view_demo.xml"], "installable": True, "uninstall_hook": "uninstall_hook", + "maintainers": ["legalsylvain"], } diff --git a/bi_sql_editor/demo/bi_sql_view_demo.xml b/bi_sql_editor/demo/bi_sql_view_demo.xml index 6e7e97116..f5a2efe41 100644 --- a/bi_sql_editor/demo/bi_sql_view_demo.xml +++ b/bi_sql_editor/demo/bi_sql_view_demo.xml @@ -11,10 +11,10 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + SELECT * + FROM unexisting_table + ORDER BY unexisting_field + ]]> @@ -23,13 +23,13 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + SELECT + name as x_name, + street as x_street, + company_id as x_company_id + FROM res_partner + ORDER BY name + ]]> @@ -39,14 +39,14 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + SELECT + name as x_name, + case + when author ilike '%OpenERP SA%' THEN 'Odoo SA' + when author ilike '%Odoo Community Association (OCA)%' THEN 'OCA' + else 'Undefined Author' END as x_author_type + FROM ir_module_module + ]]>