8339e2d5e90d065f7471369b05f7b3d88b6fee75
[odoo/odoo.git] / addons / project_issue / __openerp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 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 Affero 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 Affero General Public License for more details.
17 #
18 #    You should have received a copy of the GNU Affero General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23 {
24     'name': 'Issue Management in Project Management',
25     'version': '1.0',
26     'category': 'Generic Modules/CRM & SRM',
27     'description': """
28 This module provides Issues/Bugs Management in Project.
29 =======================================================
30
31 OpenERP allows you to manage the issues you might face in a project
32 like bugs in a system, client complaints or material breakdowns. A
33 list view allows the manager to quickly check the issues, assign them
34 and decide on their status as they evolve.
35     """,
36     'author': 'OpenERP SA',
37     'website': 'http://www.openerp.com',
38     'images': ['images/issue_analysis.jpeg','images/project_issue.jpeg'],
39     'depends': [
40         'crm',
41         'project',
42     ],
43     'init_xml': [
44         'project_issue_data.xml'
45     ],
46     'update_xml': [
47         'project_issue_view.xml',
48         'project_issue_menu.xml',
49         'report/project_issue_report_view.xml',
50         'security/project_issue_security.xml',
51         'security/ir.model.access.csv',
52         "board_project_issue_view.xml",
53      ],
54     'demo_xml': ['project_issue_demo.xml'],
55     'test': [
56       'test/convert_issue_to_task.yml',
57       'test/test_project_issue_states.yml'
58     ],
59     'installable': True,
60     'active': False,
61     'certificate' : '001236490750848623845',
62 }
63
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: