[FIX] hr_timesheet: missing positional argument in call to default_get()
[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_dashboard.jpeg',
33         'images/project_task_tree.jpeg',
34         'images/project_task.jpeg',
35         'images/project.jpeg',
36         'images/task_analysis.jpeg',
37         'images/project_kanban.jpeg',
38         'images/task_kanban.jpeg',
39         'images/task_stages.jpeg'
40     ],
41     'depends': [
42         'base_setup',
43         'product',
44         'analytic',
45         'board',
46         'mail',
47         'resource',
48         'web_kanban'
49     ],
50     'description': """
51 Track multi-level projects, tasks, work done on tasks
52 =====================================================
53
54 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.
55
56 Gantt diagrams will give you a graphical representation of your project plans, as well as resources availability and workload.
57
58 Dashboard / Reports for Project Management will include:
59 --------------------------------------------------------
60 * My Tasks
61 * Open Tasks
62 * Tasks Analysis
63 * Cumulative Flow
64     """,
65     'data': [
66         'security/project_security.xml',
67         'wizard/project_task_delegate_view.xml',
68         'security/ir.model.access.csv',
69         'project_data.xml',
70         'project_view.xml',
71         'process/task_process.xml',
72         'res_partner_view.xml',
73         'report/project_report_view.xml',
74         'report/project_cumulative.xml',
75         'board_project_view.xml',
76         'res_config_view.xml',
77     ],
78     'demo': ['project_demo.xml'],
79     'test': [
80     ],
81     'installable': True,
82     'auto_install': False,
83     'application': True,
84     'css': ['static/src/css/project.css'],
85     'js': ['static/src/js/project.js'],
86 }
87 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: