[FIX] project,project_issue: display order
[odoo/odoo.git] / addons / project / __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     'name': 'Project Management',
24     'version': '1.1',
25     'author': 'OpenERP SA',
26     'website': 'http://www.openerp.com',
27     'category': 'Project Management',
28     'sequence': 8,
29     'summary': 'Projects, Tasks',
30     'images': [
31         'images/gantt.png',
32         'images/project_task_tree.jpeg',
33         'images/project_task.jpeg',
34         'images/project.jpeg',
35         'images/task_analysis.jpeg',
36         'images/project_kanban.jpeg',
37         'images/task_kanban.jpeg',
38         'images/task_stages.jpeg'
39     ],
40     'depends': [
41         'base_setup',
42         'product',
43         'analytic',
44         'board',
45         'mail',
46         'resource',
47         'web_kanban'
48     ],
49     'description': """
50 Track multi-level projects, tasks, work done on tasks
51 =====================================================
52
53 This application allows an operational project management system to organize your activities into tasks and plan the work you need to get the tasks completed.
54
55 Gantt diagrams will give you a graphical representation of your project plans, as well as resources availability and workload.
56
57 Dashboard / Reports for Project Management will include:
58 --------------------------------------------------------
59 * My Tasks
60 * Open Tasks
61 * Tasks Analysis
62 * Cumulative Flow
63     """,
64     'data': [
65         'security/project_security.xml',
66         'wizard/project_task_delegate_view.xml',
67         'security/ir.model.access.csv',
68         'project_data.xml',
69         'project_view.xml',
70         'res_partner_view.xml',
71         'report/project_report_view.xml',
72         'report/project_cumulative.xml',
73         'res_config_view.xml',
74         'views/project.xml',
75     ],
76     'demo': ['project_demo.xml'],
77     'test': [
78     ],
79     'installable': True,
80     'auto_install': False,
81     'application': True,
82 }
83 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: