44646a07ead0b2601c8136483c795a3b4ee72e2f
[odoo/odoo.git] / addons / marketing_campaign / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22
23 {
24     "name" : "Marketing Campaigns",
25     "version" : "1.1",
26     "depends" : ["marketing",
27                  "document",
28                  "email_template",
29                  "decimal_precision"
30                 ],
31     "author" : "OpenERP SA",
32     "category": 'Marketing',
33     'complexity': "expert",
34     "description": """
35 This module provides leads automation through marketing campaigns (campaigns can in fact be defined on any resource, not just CRM Leads).
36 =========================================================================================================================================
37
38 The campaigns are dynamic and multi-channels. The process is as follows:
39     * Design marketing campaigns like workflows, including email templates to send, reports to print and send by email, custom actions, etc.
40     * Define input segments that will select the items that should enter the campaign (e.g leads from certain countries, etc.)
41     * Run you campaign in simulation mode to test it real-time or accelerated, and fine-tune it
42     * You may also start the real campaign in manual mode, where each action requires manual validation
43     * Finally launch your campaign live, and watch the statistics as the campaign does everything fully automatically.
44
45 While the campaign runs you can of course continue to fine-tune the parameters, input segments, workflow, etc.
46
47 Note: If you need demo data, you can install the marketing_campaign_crm_demo module, but this will also install the CRM application as it depends on CRM Leads.
48     """,
49     'website': 'http://www.openerp.com',
50     'init_xml': [],
51     'update_xml': [
52         'marketing_campaign_view.xml',
53         'marketing_campaign_data.xml',
54         'marketing_campaign_workflow.xml',
55         'res_partner_view.xml',
56         'report/campaign_analysis_view.xml',
57         "security/marketing_campaign_security.xml",
58         "security/ir.model.access.csv"
59     ],
60     'demo_xml': [
61         'marketing_campaign_demo.xml',
62     ],
63     'test': [
64         'test/marketing_campaign.yml',
65      ],
66     'installable': True,
67     'active': False,
68     'certificate' : '00421723279617928365',
69     'images': ['images/campaign.png', 'images/campaigns.jpeg','images/email_account.jpeg','images/email_templates.jpeg','images/segments.jpeg'],
70 }
71 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: