[IMP] move the reporting config wizard to base_setup

bzr revid: rco@openerp.com-20120420092834-4n6v0c6f8rws16oi
This commit is contained in:
Raphael Collet 2012-04-20 11:28:34 +02:00
parent 5685985d8a
commit 5417840136
6 changed files with 50 additions and 76 deletions

View File

@ -21,10 +21,9 @@
from osv import osv, fields
class general_configuration(osv.osv_memory):
class base_config_settings(osv.osv_memory):
_name = 'base.config.settings'
_inherit = 'res.config.settings'
_columns = {
'module_multi_company': fields.boolean('Multi Company',
help="""Work in multi-company environments, with appropriate security access between companies.
@ -38,4 +37,23 @@ class general_configuration(osv.osv_memory):
This installs the module share."""),
}
class report_config_settings(osv.osv_memory):
_name = 'report.config.settings'
_inherit = 'res.config.settings'
_columns = {
'module_base_report_designer': fields.boolean('Customize your OpenERP Reports with OpenOffice',
help ="""Import/export OpenERP reports that you can modify with OpenOffice.
New and modified reports can be uploaded to OpenERP thanks to the provided OpenOffice plugin.
This installs the module base_report_designer."""),
'module_report_webkit': fields.boolean('Design OpenERP Reports in HTML',
help ="""Design OpenERP reports with a report engine based on the WebKit library (http://www.webkit.org).
Reports are defined in HTML and the report generation is customized with CSS.
This installs the module report_webkit."""),
'module_report_webkit_sample': fields.boolean('Samples of HTML Reports',
help ="""Install a sample invoice report defined in HTML.
This installs the module report_webkit_sample."""),
}
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -30,9 +30,38 @@
<field name="view_mode">form</field>
<field name="target">inline</field>
</record>
<menuitem id="menu_general_configuration" name="Settings" parent="base.menu_config"
sequence="50" action="action_general_configuration"/>
<record id="view_reporting_configuration" model="ir.ui.view">
<field name="name">Configure Reporting</field>
<field name="model">report.config.settings</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="Configure Reporting" layout="manual">
<div class="oe_form_topbar">
<button string="Apply" type="object" name="execute"/>
<button string="Cancel" special="cancel"/>
</div>
<sheet layout="auto">
<separator string="Reports" colspan="4"/>
<field name="module_base_report_designer"/>
<newline/>
<field name="module_report_webkit"/>
<field name="module_report_webkit_sample"/>
</sheet>
</form>
</field>
</record>
<record id="action_reporting_configuration" model="ir.actions.act_window">
<field name="name">Configure Reporting</field>
<field name="res_model">report.config.settings</field>
<field name="view_mode">form</field>
<field name="target">inline</field>
</record>
<menuitem id="menu_reporting_configuration" name="Reporting" parent="base.menu_config"
sequence="45" action="action_reporting_configuration"/>
</data>
</openerp>

View File

@ -19,6 +19,5 @@
#
##############################################################################
import res_config
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -38,7 +38,6 @@ modules like base_report_designer and base_report_creator.
'init_xml': [],
'update_xml': [
'security/ir.model.access.csv',
'res_config_view.xml',
],
'demo_xml': [],
'installable': True,

View File

@ -1,39 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from osv import fields, osv
class report_configuration(osv.osv_memory):
_name = 'report.configuration'
_inherit = 'res.config.settings'
_columns = {
'module_base_report_designer': fields.boolean('Customise your OpenERP Report with OpenOffice',
help ="""It installs the base_report_designer module."""),
'module_report_webkit': fields.boolean('Design OpenERP report in HTML',
help ="""It installs the report_webkit module."""),
'module_report_webkit_sample': fields.boolean('Samples of HTML report design',
help ="""It installs the report_webkit_sample module."""),
}
report_configuration()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -1,32 +0,0 @@
<openerp>
<data>
<record id="view_reporting_configuration" model="ir.ui.view">
<field name="name">Reporting Application</field>
<field name="model">report.configuration</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string ="Reporting Application">
<separator string="Reports" colspan="4"/>
<group colspan="4" col="4">
<field name="module_base_report_designer"/>
<field name="module_report_webkit"/>
<field name="module_report_webkit_sample"/>
</group>
</form>
</field>
</record>
<record id="action_reporting_configuration" model="ir.actions.act_window">
<field name="name">Configure Reporting Application</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">report.configuration</field>
<field name="view_id" ref="view_reporting_configuration"/>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>
<menuitem id="menu_reporting_configuration" name="Reporting" parent="base.menu_config" sequence="9" action="action_reporting_configuration"/>
</data>
</openerp>