Launchpad automatic translations update.
[odoo/odoo.git] / addons / crm / __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': 'Customer & Supplier Relationship Management',
25     'version': '1.0',
26     'category': 'Generic Modules/CRM & SRM',
27     'description': """The generic OpenERP Customer Relationship Management
28 system enables a group of people to intelligently and efficiently manage
29 leads, opportunities, meeting, phonecall etc.
30 It manages key tasks such as communication, identification, prioritization,
31 assignment, resolution and notification.
32
33 OpenERP ensures that all cases are successfully tracked by users, customers and
34 suppliers. It can automatically send reminders, escalate the request, trigger
35 specific methods and lots of other actions based on your own enterprise rules.
36
37 The greatest thing about this system is that users don't need to do anything
38 special. They can just send email to the request tracker. OpenERP will take
39 care of thanking them for their message, automatically routing it to the
40 appropriate staff, and make sure all future correspondence gets to the right
41 place.
42
43 The CRM module has a email gateway for the synchronisation interface
44 between mails and OpenERP.
45 Create dashboard for CRM that includes:
46     * My Leads (list)
47     * Leads by Stage (graph)
48     * My Meetings (list)
49     * Sales Pipeline by Stage (graph)
50     * My Cases (list)
51     * Jobs Tracking (graph)
52 """,
53     'author': 'OpenERP SA',
54     'website': 'http://www.openerp.com',
55     'depends': [
56         'base',
57         'base_action_rule',
58         'process',
59         'mail_gateway',
60         'base_calendar',
61         'resource',
62         'board'
63     ],
64     'init_xml': [
65         'crm_data.xml',
66         'crm_meeting_data.xml',
67         'crm_lead_data.xml',
68         'crm_meeting_data.xml',
69         'crm_opportunity_data.xml',
70         'crm_phonecall_data.xml',
71     ],
72     'update_xml': [
73         'security/crm_security.xml',
74         'security/ir.model.access.csv',
75
76         'wizard/crm_lead_to_partner_view.xml',
77         'wizard/crm_lead_to_opportunity_view.xml',
78
79         'wizard/crm_phonecall_to_phonecall_view.xml',
80         'wizard/crm_phonecall_to_partner_view.xml',
81         'wizard/crm_phonecall_to_opportunity_view.xml',
82
83         'wizard/crm_opportunity_to_phonecall_view.xml',
84         'wizard/crm_partner_to_opportunity_view.xml',
85
86         'wizard/crm_send_email_view.xml',
87         'wizard/crm_add_note_view.xml',
88         'wizard/crm_merge_opportunities_view.xml',
89
90         'crm_view.xml',
91
92         'crm_action_rule_view.xml',
93         'crm_lead_view.xml',
94         'crm_lead_menu.xml',
95
96         'crm_meeting_view.xml',
97         'crm_meeting_menu.xml',
98         'crm_meeting_shortcut_data.xml',
99
100         'crm_phonecall_view.xml',
101         'crm_phonecall_menu.xml',
102
103         'crm_opportunity_view.xml',
104         'crm_opportunity_menu.xml',
105
106         'report/crm_lead_report_view.xml',
107         'report/crm_phonecall_report_view.xml',
108
109         'process/crm_configuration_process.xml',
110         'crm_installer_view.xml',
111
112         'res_partner_view.xml',
113         'board_crm_view.xml',
114         'board_crm_statistical_view.xml',
115
116     ],
117     'demo_xml': [
118         'crm_demo.xml',
119         'crm_lead_demo.xml',
120         'crm_meeting_demo.xml',
121         'crm_opportunity_demo.xml',
122         'crm_phonecall_demo.xml',
123     ],
124     'test': [
125             'test/test_crm_lead.yml',
126             'test/test_crm_meeting.yml',
127             'test/test_crm_opportunity.yml',
128             'test/test_crm_phonecall.yml',
129             'test/test_crm_recurrent_meeting.yml',
130             'test/test_crm_stage_changes.yml',
131              ],
132     'installable': True,
133     'active': False,
134     'certificate': '0079056041421',
135 }
136 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: