~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to report_designer/installer.py

  • Committer: Xavier Morel
  • Date: 2010-01-13 15:01:21 UTC
  • Revision ID: xmo@tinyerp.com-20100113150121-kmki5vszfwyscow2
[fix] rename installer addons (potentially) conflicting with server modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
##############################################################################
21
21
from osv import fields, osv
22
22
 
23
 
class report_installer(osv.osv_memory):
24
 
    _name = 'report.installer'
 
23
class report_designer_installer(osv.osv_memory):
 
24
    _name = 'report_designer.installer'
25
25
    _inherit = 'res.config.installer'
26
26
 
27
27
    _columns = {
30
30
        'base_report_creator':fields.boolean('Query Builder'),
31
31
        'olap':fields.boolean('Business Intelligence Report'),
32
32
        }
33
 
report_installer()
 
33
report_designer_installer()
34
34