fix
[odoo/odoo.git] / addons / project_long_term / __openerp__.py
index 99bce80..6b01944 100644 (file)
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
+
 {
-    "name" : "Long Term Project Management",
+    "name": "Long Term Projects",
     "version": "1.1",
-    "author" : "Tiny",
-    "website" : "http://www.openerp.com",
-    "category" : "Generic Modules/Projects & Services",
-    "depends" : ["project", "resource"],
+    "author": "OpenERP SA",
+    "website": "http://www.openerp.com",
+    "category": "Project Management",
+    "images": ["images/project_phase_form.jpeg","images/project_phases.jpeg", "images/resources_allocation.jpeg"],
+    "depends": ["project"],
     "description": """
+Long Term Project management module that tracks planning, scheduling, resources allocation.
+===========================================================================================
 
-        Long Term Project management module that track planning, scheduling, resources allocation.
-        Mainly used with Big project management.
-            - Project Phases will be maintain by Manager of the project
-            - Compute Phase Scheduling: Compute start date and end date of the phases which are in draft,open and pending state of the project given.
-                                        If no project given then all the draft,open and pending states phases will be taken
-            - Compute Task Scheduling: This works same as the scheduler button on project.phase. It takes the project as arguement and computes all the open,draft and pending tasks
-            - Schedule Tasks: All the tasks which are in draft,pending and open states are scheduled with taking the phase's start date
-
+Features
+--------
+    * Manage Big project.
+    * Define various Phases of Project.
+    * Compute Phase Scheduling: Compute start date and end date of the phases which are in draft,open and pending state of the project given.
+      If no project given then all the draft,open and pending state phases will be taken.
+    * 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.
+    * Schedule Tasks: All the tasks which are in draft,pending and open state are scheduled with taking the phase's start date
     """,
-    "init_xml" : [],
-    "demo_xml" : ["project_long_term_demo.xml"],
+    "init_xml": [],
+    "demo_xml": ["project_long_term_demo.xml"],
+    "test": [
+          'test/test_schedule_phases_case1.yml',
+          'test/schedule_project_phases.yml',
+          'test/schedule_project_tasks.yml',
+          'test/test_schedule_phases_case2.yml',
+          'test/project_schedule_consecutive_day.yml',
+          'test/project_schedule_without_wroking_hour.yml',
+          'test/phase_constraint.yml',
+          'test/test_schedule_tasks_case1.yml',
+    ],
     "update_xml": [
         "security/ir.model.access.csv",
-        "project_long_term_wizard.xml" ,
-        "wizard/project_schedule_tasks_view.xml",
         "project_long_term_view.xml",
         "project_long_term_workflow.xml",
         "wizard/project_compute_phases_view.xml",
         "wizard/project_compute_tasks_view.xml",
-
     ],
     'installable': True,
     'active': False,
-    'certificate': None,
+    'certificate': '001227470751077315069',
 }
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: