[IMP] remove config wizard 'Reporting'

bzr revid: rco@openerp.com-20120427091712-1snf6ftllbof9idt
This commit is contained in:
Raphael Collet 2012-04-27 11:17:12 +02:00
parent bd23378343
commit 1b7eedc1d5
2 changed files with 0 additions and 49 deletions

View File

@ -39,25 +39,6 @@ class base_config_settings(osv.osv_memory):
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."""),
}
class knowledge_config_settings(osv.osv_memory):
_name = 'knowledge.config.settings'
_inherit = 'res.config.settings'

View File

@ -37,36 +37,6 @@
<menuitem id="menu_general_configuration" name="Settings" parent="base.menu_config"
sequence="100" 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="90" action="action_reporting_configuration"/>
<record id="view_knowledge_configuration" model="ir.ui.view">
<field name="name">Configure Knowledge</field>
<field name="model">knowledge.config.settings</field>