[IMP] moved module sequences from module to each module's manifest
[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': 'Issues Tracker',
25     'version': '1.0',
26     'category': 'Project Management',
27     "sequence": 22,
28     'complexity': "easy",
29     'description': """
30 This module provides Issues/Bugs Management in Project.
31 =======================================================
32
33 OpenERP allows you to manage the issues you might face in a project
34 like bugs in a system, client complaints or material breakdowns. A
35 list view allows the manager to quickly check the issues, assign them
36 and decide on their status as they evolve.
37     """,
38     'author': 'OpenERP SA',
39     'website': 'http://www.openerp.com',
40     'images': ['images/issue_analysis.jpeg','images/project_issue.jpeg'],
41     'depends': [
42         'crm',
43         'project',
44     ],
45     'init_xml': [
46         'project_issue_data.xml'
47     ],
48     'update_xml': [
49         'project_issue_view.xml',
50         'project_issue_menu.xml',
51         'report/project_issue_report_view.xml',
52         'security/project_issue_security.xml',
53         'security/ir.model.access.csv',
54         "board_project_issue_view.xml",
55      ],
56     'demo_xml': ['project_issue_demo.xml'],
57     'test': [
58       'test/subscribe_issue.yml',
59       'test/issue_process.yml',
60       'test/cancel_issue.yml',
61       'test/issue_demo.yml'
62     ],
63     'installable': True,
64     'active': False,
65     'application': True,
66     'certificate' : '001236490750848623845',
67 }
68
69 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: