Jagdish Panchal (Open ERP) has proposed merging 
lp:~openerp-dev/openobject-addons/trunk-v62_marketing_config-jap into 
lp:~openerp-dev/openobject-addons/trunk-v62_config.

Requested reviews:
  OpenERP R&D Team (openerp-dev)

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-v62_marketing_config-jap/+merge/100923

Hello,

[ADD]: Added new configuration wizard for Marketing application.

Thanks,
JAP
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-v62_marketing_config-jap/+merge/100923
Your team OpenERP R&D Team is requested to review the proposed merge of 
lp:~openerp-dev/openobject-addons/trunk-v62_marketing_config-jap into 
lp:~openerp-dev/openobject-addons/trunk-v62_config.
=== modified file 'marketing/__init__.py'
--- marketing/__init__.py	2011-10-11 20:05:49 +0000
+++ marketing/__init__.py	2012-04-05 07:33:22 +0000
@@ -19,6 +19,7 @@
 #
 ##############################################################################
 
+import res_config
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 

=== modified file 'marketing/__openerp__.py'
--- marketing/__openerp__.py	2012-01-31 13:36:57 +0000
+++ marketing/__openerp__.py	2012-04-05 07:33:22 +0000
@@ -38,7 +38,8 @@
     '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,

=== added file 'marketing/res_config.py'
--- marketing/res_config.py	1970-01-01 00:00:00 +0000
+++ marketing/res_config.py	2012-04-05 07:33:22 +0000
@@ -0,0 +1,37 @@
+# -*- 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_campaign': fields.boolean('Marketing Campaigns',
+                           help ="""It installs the marketing_campaign module."""),
+        'module_marketing_campaign_crm_demo': fields.boolean('Demo data for the module Marketing Campaigns',
+                           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:
\ No newline at end of file

=== added file 'marketing/res_config_view.xml'
--- marketing/res_config_view.xml	1970-01-01 00:00:00 +0000
+++ marketing/res_config_view.xml	2012-04-05 07:33:22 +0000
@@ -0,0 +1,32 @@
+<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="4" col="4">
+                        <field name="module_marketing_campaign"/>
+                        <field name="module_marketing_campaign_crm_demo"/>
+                        <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>

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to