[fix] desactivated href in header
[odoo/odoo.git] / addons / report_designer / installer.py
index 4dd35fd..e4bbc4f 100644 (file)
 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
-        'base_report_designer':fields.boolean('OpenOffice Report Designer',help="This module adds wizards to import/export .SXW report that "
+        'base_report_designer':fields.boolean('OpenOffice Report Designer',help="Adds wizards to Import/Export .SXW report which "
                                 "you can modify in OpenOffice.Once you have modified it you can "
                                 "upload the report using the same wizard."),
-        'base_report_creator':fields.boolean('Query Builder',help="Query Builder allows you to create any statistic "
-                                "reports  on several objects. It's a SQL query builder and browser for and users. "
-                                "After installation, it adds a menu to define custom report in the Dashboard menu."),
-        'olap':fields.boolean('Business Intelligence Report',help="Olap module is used to install BI module in client. Olap provides Online "
-                                "Analytical Process with the mdx query. BI provides Cube Browsing and Cube Designing. "
-                                "After installation you will get Cube Browser and Cube Designer in Reporting Menu. "
-                                "Cube Browser is used to generate the reports with table view (mdx view) of mdx query "
-                                "and Cube Designer is used to make cubes in BI."),
+        '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."),
     }
 report_designer_installer()