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