fix and complete access rules
[odoo/odoo.git] / addons / crm / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 # Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved.
5 #
6 # $Id$
7 #
8 # WARNING: This program as such is intended to be used by professional
9 # programmers who take the whole responsability of assessing all potential
10 # consequences resulting from its eventual inadequacies and bugs
11 # End users who are looking for a ready-to-use solution with commercial
12 # garantees and support are strongly adviced to contract a Free Software
13 # Service Company
14 #
15 # This program is Free Software; you can redistribute it and/or
16 # modify it under the terms of the GNU General Public License
17 # as published by the Free Software Foundation; either version 2
18 # of the License, or (at your option) any later version.
19 #
20 # This program is distributed in the hope that it will be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write to the Free Software
27 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
28 ###############################################################################
29 {
30     "name" : "Customer & Supplier Relationship Management",
31     "version" : "1.0",
32     "author" : "Tiny",
33     "website" : "http://tinyerp.com/module_crm.html",
34     "category" : "Generic Modules/CRM & SRM",
35     "description": """The Tiny ERP case and request tracker enables a group of
36 people to intelligently and efficiently manage tasks, issues, and requests.
37 It manages key tasks such as communication, identification, prioritization,
38 assignment, resolution and notification.
39
40 Tiny ERP ensures that all cases are successfly tracked by users, customers and
41 suppliers. It can automatically send reminders, escalate the request, trigger
42 specific methods and lots of others actions based on your enterprise own rules.
43
44 The greatest thing about this system is that users don't need to do anything
45 special. They can just send email to the request tracker. Tiny ERP will take
46 care of thanking them for their message, automatically routing it to the
47 appropriate staff, and making sure all future correspondence gets to the right
48 place.
49
50 The CRM module has a email gateway for the synchronisation interface
51 between mails and Tiny ERP.""",
52     "depends" : ["base"],
53     "init_xml" : ["crm_data.xml"],
54     "demo_xml" : ["crm_demo.xml"],
55     "update_xml" : [
56         "crm_view.xml",
57         "crm_report.xml",
58         "crm_wizard.xml",
59         "security/crm_security.xml",
60         "security/ir.model.access.csv",
61     ],
62     "active": False,
63     "installable": True
64 }
65
66 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
67