[fix] desactivated href in header
[odoo/odoo.git] / addons / report_designer / installer.py
index 1accab6..e4bbc4f 100644 (file)
@@ -21,8 +21,7 @@
 from osv import fields, osv
 
 class report_designer_installer(osv.osv_memory):
-    _name = 'report_designer.installer'
-    _inherit = 'res.config.installer'
+    _inherit = 'base.setup.installer'
 
     _columns = {
         # Reporting
@@ -31,7 +30,6 @@ class report_designer_installer(osv.osv_memory):
                                 "upload the report using the same wizard."),
         'base_report_creator':fields.boolean('Query Builder',help="Allows you to create any statistic "
                                 "reports  on several objects. It's a SQL query builder and browser for end users."),
-        'olap':fields.boolean('Business Intelligence Report',help="Helps you manage Online Analytical Process with the mdx query and provides Cube Designing and Cube Browsing"),
     }
 report_designer_installer()