[IMP] Marketing: add the configuration wizard

bzr revid: jap@tinyerp.com-20120327091854-541dh2fpygomlw3i
This commit is contained in:
Jagdish Panchal (Open ERP) 2012-03-27 14:48:54 +05:30
parent 2987e422a4
commit 45e10ba3b1
4 changed files with 81 additions and 1 deletions

View File

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

View File

@ -38,7 +38,8 @@ Contains the installer for marketing-related modules.
'update_xml': [
'security/marketing_security.xml',
'security/ir.model.access.csv',
'marketing_view.xml'
'marketing_view.xml',
'res_config_view.xml',
],
'demo_xml': ['marketing_demo.xml'],
'installable': True,

View File

@ -0,0 +1,41 @@
# -*- 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 marketing_configuration(osv.osv_memory):
_name = 'marketing.configuration'
_inherit = 'res.config.settings'
_columns = {
'module_marketing': fields.boolean('Marketing',
help ="""It installs the marketing_campaign module."""),
'module_marketing_campaign': fields.boolean('Marketing Campaign',
help ="""It installs the marketing_campaign module."""),
'module_marketing_campaign_crm_demo': fields.boolean('Demo data for the module Marketing Campaign',
help ="""It installs the marketing_campaign_crm_demo module."""),
'module_crm_profiling': fields.boolean('Track customer profile to focus your campaigns',
help ="""It install the crm_profiling module."""),
}
marketing_configuration()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,37 @@
<openerp>
<data>
<record id="view_marketing_configuration" model="ir.ui.view">
<field name="name">Marketing Application</field>
<field name="model">marketing.configuration</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string ="Marketing Application">
<separator string="Campaigns" colspan="4"/>
<group colspan="2" col="4">
<field name="module_marketing_campaign"/>
<newline/>
<field name="module_marketing_campaign_crm_demo"/>
</group>
<newline/>
<separator colspan="4"/>
<group colspan="2" col="4">
<field name="module_crm_profiling"/>
</group>
</form>
</field>
</record>
<record id="action_marketing_configuration" model="ir.actions.act_window">
<field name="name">Configure Marketing Application</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">marketing.configuration</field>
<field name="view_id" ref="view_marketing_configuration"/>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>
<menuitem id="menu_marketing_configuration" name="Marketing" parent="base.menu_config" sequence="5" action="action_marketing_configuration"/>
</data>
</openerp>