[ADD]:added yml test for project and project_ modules
[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     "name" : "Long Term Project Management",
23     "version": "1.1",
24     "author" : "Tiny",
25     "website" : "http://www.openerp.com",
26     "category" : "Generic Modules/Projects & Services",
27     "depends" : ["project", "resource"],
28     "description": """
29
30         Long Term Project management module that tracks planning, scheduling, resources allocation.
31         Mainly used with Big project management.
32             - Project Phases will be maintained by Manager of the project
33             - Compute Phase Scheduling: Compute start date and end date of the phases which are in draft,open and pending state of the project given.
34                                         If no project given then all the draft,open and pending state phases will be taken
35             - Compute Task Scheduling: This works same as the scheduler button on project.phase. It takes the project as argument and computes all the open,draft and pending tasks
36             - Schedule Tasks: All the tasks which are in draft,pending and open state are scheduled with taking the phase's start date
37
38     """,
39     "init_xml" : [],
40     "demo_xml" : ["project_long_term_demo.xml"],
41     "test" : [
42 #              'test/schedule_project_phases.yml',
43 #              'test/schedule_project_tasks.yml',
44 #              'test/schedule_phase_tasks.yml'
45               ],
46     "update_xml": [
47         "security/ir.model.access.csv",
48         "project_long_term_wizard.xml" ,
49         "wizard/project_schedule_tasks_view.xml",
50         "project_long_term_view.xml",
51         "project_long_term_workflow.xml",
52         "wizard/project_compute_phases_view.xml",
53         "wizard/project_compute_tasks_view.xml",
54
55     ],
56     'installable': True,
57     'active': False,
58     'certificate': None,
59 }
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: