[IMP] project: optimize function field progress_rate of project.project
[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 {
24     "name": "Project Management",
25     "version": "1.1",
26     "author": "OpenERP SA",
27     "website": "http://www.openerp.com",
28     "category": "Project Management",
29     "sequence": 8,
30     'complexity': "easy",
31     "images": ["images/gantt.png", "images/project_dashboard.jpeg","images/project_task_tree.jpeg","images/project_task.jpeg","images/project.jpeg","images/task_analysis.jpeg"],
32     "depends": ["base_setup", "product", "analytic", "board",  "mail", "resource"],
33     "description": """
34 Project management module tracks multi-level projects, tasks, work done on tasks, eso.
35 ======================================================================================
36
37 It is able to render planning, order tasks, eso.
38
39 Dashboard for project members that includes:
40 --------------------------------------------
41     * List of my open tasks
42     * List of my delegated tasks
43     * Graph of My Projects: Planned vs Total Hours
44     * Graph of My Remaining Hours by Project
45     """,
46     "init_xml": [],
47     "update_xml": [
48         "security/project_security.xml",
49         "wizard/project_task_delegate_view.xml",
50         "wizard/project_task_reevaluate_view.xml",
51         "security/ir.model.access.csv",
52         "project_data.xml",
53         "project_view.xml",
54         "process/task_process.xml",
55         "project_installer.xml",
56         "res_partner_view.xml",
57         "report/project_report_view.xml",
58         "board_project_view.xml",
59         'board_project_manager_view.xml',
60         'report/project_cumulative.xml'
61     ],
62     'demo_xml': [
63         'project_demo.xml',
64     ],
65     'test':[
66         'test/project_demo.yml',
67         'test/project_process.yml',
68         'test/task_process.yml',
69     ],
70     'installable': True,
71     'auto_install': False,
72     'application': True,
73     'certificate': '0075116868317',
74 }
75 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: