[REM] completion in Gantt chart tasks and projects, not supported by OpenERP and...
[odoo/odoo.git] / addons / project_issue / __openerp__.py
index 7339399..3fe54fc 100644 (file)
@@ -6,35 +6,41 @@
 #    $Id$
 #
 #    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU General Public License as published by
+#    it under the terms of the GNU Affero General Public License as published by
 #    the Free Software Foundation, either version 3 of the License, or
 #    (at your option) any later version.
 #
 #    This program is distributed in the hope that it will be useful,
 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-#    GNU General Public License for more details.
+#    GNU Affero General Public License for more details.
 #
-#    You should have received a copy of the GNU General Public License
+#    You should have received a copy of the GNU Affero General Public License
 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 ##############################################################################
 
-
 {
-    'name': 'Issue Management in Project Management',
+    'name': 'Issues Tracker',
     'version': '1.0',
-    'category': 'Generic Modules/CRM & SRM',
+    'category': 'Project Management',
+    "sequence": 22,
+    'complexity': "easy",
     'description': """
-        This module provide Issues/Bugs Management in Project
+This module provides Issues/Bugs Management in Project.
+=======================================================
+
+OpenERP allows you to manage the issues you might face in a project
+like bugs in a system, client complaints or material breakdowns. A
+list view allows the manager to quickly check the issues, assign them
+and decide on their status as they evolve.
     """,
-    'author': 'Tiny',
+    'author': 'OpenERP SA',
     'website': 'http://www.openerp.com',
+    'images': ['images/issue_analysis.jpeg','images/project_issue.jpeg'],
     'depends': [
         'crm',
         'project',
-        'hr_timesheet_sheet',
-        'project_long_term',
     ],
     'init_xml': [
         'project_issue_data.xml'
         "board_project_issue_view.xml",
      ],
     'demo_xml': ['project_issue_demo.xml'],
-    'test' : [
-              'test/convert_issue_to_task.yml',
-              'test/test_project_issue_states.yml'
-            ],
+    'test': [
+      'test/subscribe_issue.yml',
+      'test/issue_process.yml',
+      'test/cancel_issue.yml',
+      'test/issue_demo.yml'
+    ],
     'installable': True,
     'active': False,
+    'application': True,
+    'certificate' : '001236490750848623845',
 }
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: