[TYPO] Set the right category for the Point Of Sale
[odoo/odoo.git] / addons / project_long_term / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 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": "Long Term Projects",
24     "version": "1.1",
25     "author": "OpenERP SA",
26     "website": "http://www.openerp.com",
27     "category": "Project Management",
28     "images": ["images/project_phase_form.jpeg","images/project_phases.jpeg", "images/resources_allocation.jpeg"],
29     "depends": ["project"],
30     "description": """
31 Long Term Project management module that tracks planning, scheduling, resources allocation.
32 ===========================================================================================
33
34 Features:
35 ---------
36     * Manage Big project
37     * Define various Phases of Project
38     * Compute Phase Scheduling: Compute start date and end date of the phases
39       which are in draft, open and pending state of the project given. If no
40       project given then all the draft, open and pending state phases will be taken.
41     * Compute Task Scheduling: This works same as the scheduler button on
42       project.phase. It takes the project as argument and computes all the open,
43       draft and pending tasks.
44     * Schedule Tasks: All the tasks which are in draft, pending and open state
45       are scheduled with taking the phase's start date.
46     """,
47     "init_xml": [],
48     "demo_xml": ["project_long_term_demo.xml"],
49     "test": [
50           'test/phase_process.yml',
51           'test/task_process.yml',
52     ],
53     "update_xml": [
54         "security/ir.model.access.csv",
55         "project_long_term_view.xml",
56         "project_long_term_workflow.xml",
57         "wizard/project_compute_phases_view.xml",
58         "wizard/project_compute_tasks_view.xml",
59     ],
60     'installable': True,
61     'auto_install': False,
62     'certificate': '001227470751077315069',
63 }
64
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: