~openerp-commiter/openobject-addons/trunk-extra-addons

« back to all changes in this revision

Viewing changes to dm/__terp__.py

  • Committer: Fabien Pinckaers
  • Date: 2008-11-12 06:43:12 UTC
  • Revision ID: fp@tinyerp.com-20081112064312-fp85io97i1e95tuz
moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution   
 
5
#    Copyright (C) 2004-2008 Tiny SPRL (<http://tiny.be>). All Rights Reserved
 
6
#    $Id$
 
7
#
 
8
#    This program is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
##############################################################################
 
22
{
 
23
    "name" : "Direct Marketing",
 
24
    "version" : "1.0",
 
25
    "author" : "Tiny",
 
26
    "website" : "http://tinyerp.com",
 
27
    "category" : "Generic Modules/Direct Marketing",
 
28
    "description": """
 
29
 
 
30
        Marketing Campaign Management Module
 
31
 
 
32
        This module allows to :
 
33
 
 
34
        * Commercial Offers :
 
35
            - Create  Multimedia Commercial Offers
 
36
            - View a Graphicalreprsesentation of the offer steps
 
37
            - Create offers from offer models and offer ideas
 
38
 
 
39
        * Marketing Campaign
 
40
            - Plan your Marketing Campaign and Commercial Propositions
 
41
            - Generate the Retro planning (automaticaly creates all the tasks necessary to launch your campaign)
 
42
            - Assign automatic prices to the items of your commercial propositions
 
43
            - Auto generate the purchase orders for all the items of the campaign
 
44
            - Manage Customers Fils, segments and segmentation criteria
 
45
            - Create campaigns from campaign models
 
46
            - Manage copywriters, brokers, dealers, addresses deduplicators and cleaners
 
47
 
 
48
            """,
 
49
    "depends" : ["project_retro_planning","purchase","purchase_tender"],
 
50
    "init_xml" : [ ],
 
51
    "demo_xml" : [
 
52
                    "dm_demo.xml"
 
53
#                  "campaign_data.xml",
 
54
                  ],
 
55
    "update_xml" : [
 
56
                    "security/dm_security.xml",
 
57
                    "security/ir.model.access.csv",
 
58
                    "dm_wizard.xml",
 
59
                    "offer_view.xml",
 
60
                    "offer_step_view.xml",
 
61
                    "campaign_view.xml",
 
62
                    "trademark_view.xml",
 
63
                    "dm_report.xml",
 
64
                    "offer_sequence.xml",
 
65
                    "dm_data.xml",
 
66
                    ],
 
67
    "active": False,
 
68
    "installable": True
 
69
}
 
70
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
71