[ADD]: crm: Added crm installer + minor fix in crm_claims
[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 Open ERP 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 Open ERP 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 others actions based on your enterprise own 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. Open ERP will take
39 care of thanking them for their message, automatically routing it to the
40 appropriate staff, and making 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 Open ERP.""",
45     'author': 'Tiny',
46     'website': 'http://www.openerp.com',
47     'depends': [
48         'base', 
49         'base_action_rule',
50         'process',
51         'mail_gateway',
52         'base_calendar',
53         'resource',
54     ],
55     'init_xml': [
56         'crm_data.xml',
57         'crm_meeting_data.xml',
58         'crm_lead_data.xml',
59         'crm_meeting_data.xml',
60         'crm_opportunity_data.xml',
61         'crm_phonecall_data.xml',
62     ],
63
64     'update_xml': [
65         'wizard/crm_lead_to_partner_view.xml',
66         'wizard/crm_lead_to_opportunity_view.xml',
67
68         'wizard/crm_phonecall_to_phonecall_view.xml',
69         'wizard/crm_phonecall_to_partner_view.xml',
70         'wizard/crm_phonecall_to_opportunity_view.xml',
71
72         'wizard/crm_opportunity_to_phonecall_view.xml',
73         'wizard/crm_partner_to_opportunity_view.xml',
74
75         'wizard/crm_forward_to_partner_view.xml',
76         'wizard/crm_send_email_view.xml',
77         'wizard/crm_email_add_cc_view.xml',
78         'crm_view.xml',
79
80         'crm_action_rule_view.xml',
81         'crm_lead_view.xml',
82         'crm_lead_menu.xml',
83         
84         'crm_meeting_view.xml',
85         'crm_meeting_menu.xml',
86         
87         'crm_phonecall_view.xml',
88         'crm_phonecall_menu.xml',
89         
90         'crm_opportunity_view.xml',
91         'crm_opportunity_menu.xml',
92         
93         'security/crm_security.xml',
94         'security/ir.model.access.csv',
95
96         'report/crm_report_view.xml',
97         'report/crm_lead_report_view.xml',
98         'report/crm_opportunity_report_view.xml' ,
99         'report/crm_phonecall_report_view.xml',
100
101         'process/crm_configuration_process.xml',
102         'crm_installer_view.xml'
103     ],
104     'demo_xml': [
105         'crm_demo.xml',
106         'crm_lead_demo.xml',
107         'crm_meeting_demo.xml',
108         'crm_opportunity_demo.xml',
109         'crm_phonecall_demo.xml'
110     ],
111     'test': ['test/test_crm_lead.yml',
112             'test/test_crm_meeting.yml', 
113             'test/test_crm_opportunity.yml',
114             'test/test_crm_phonecall.yml', 
115              ],
116     'installable': True,
117     'active': False,
118     'certificate': '0079056041421',
119 }
120 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: