[IMP] use const SUPERUSER_ID insteand of int 1
[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     "description": """
34 This module provides leads automation through marketing campaigns (campaigns can in fact be defined on any resource, not just CRM Leads).
35 =========================================================================================================================================
36
37 The campaigns are dynamic and multi-channels. The process is as follows:
38     * Design marketing campaigns like workflows, including email templates to send, reports to print and send by email, custom actions, etc.
39     * Define input segments that will select the items that should enter the campaign (e.g leads from certain countries, etc.)
40     * Run you campaign in simulation mode to test it real-time or accelerated, and fine-tune it
41     * You may also start the real campaign in manual mode, where each action requires manual validation
42     * Finally launch your campaign live, and watch the statistics as the campaign does everything fully automatically.
43
44 While the campaign runs you can of course continue to fine-tune the parameters, input segments, workflow, etc.
45
46 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.
47     """,
48     'website': 'http://www.openerp.com',
49     'init_xml': [],
50     'update_xml': [
51         'marketing_campaign_view.xml',
52         'marketing_campaign_data.xml',
53         'marketing_campaign_workflow.xml',
54         'res_partner_view.xml',
55         'report/campaign_analysis_view.xml',
56         "security/marketing_campaign_security.xml",
57         "security/ir.model.access.csv"
58     ],
59     'demo_xml': [
60         'marketing_campaign_demo.xml',
61     ],
62     'test': [
63         'test/marketing_campaign.yml',
64      ],
65     'installable': True,
66     'auto_install': False,
67     'certificate' : '00421723279617928365',
68     'images': ['images/campaign.png', 'images/campaigns.jpeg','images/email_account.jpeg','images/email_templates.jpeg','images/segments.jpeg'],
69 }
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: