[IMP] account: unique description for wizard model
[odoo/odoo.git] / addons / project_scrum / __openerp__.py
index 92eb86f..9b2f4c4 100644 (file)
 {
     'name': 'Scrum, Agile Development Method',
     'version': '1.0',
-    'category': 'Enterprise Specific Modules/Information Technology',
+    'category': 'Project Management',
+    'complexity': "easy",
     'description': """
-    This module implements all concepts defined by the scrum project
-    management methodology for IT companies:
+This module implements all concepts defined by the scrum project management methodology for IT companies.
+=========================================================================================================
+
     * Project with sprints, product owner, scrum master
     * Sprints with reviews, daily meetings, feedbacks
     * Product backlog
     * Sprint backlog
 
-    It adds some concepts to the project management module:
+It adds some concepts to the project management module:
     * Mid-term, long-term road-map
     * Customers/functional requests VS technical ones
 
-    It also creates a new reporting:
+It also creates a new reporting:
     * Burn-down chart
 
-    The scrum projects and tasks inherit from the real projects and
-    tasks, so you can continue working on normal tasks that will also
-    include tasks from scrum projects.
+The scrum projects and tasks inherit from the real projects and
+tasks, so you can continue working on normal tasks that will also
+include tasks from scrum projects.
 
-    More information on the methodology:
+More information on the methodology:
     * http://controlchaos.com
     """,
-    'author': 'Tiny',
-    'depends': ['project', 'process'],
+    'author': 'OpenERP SA',
+    'images': ['images/product_backlogs.jpeg', 'images/project_sprints.jpeg', 'images/scrum_dashboard.jpeg', 'images/scrum_meetings.jpeg'],
+    'depends': ['project', 'process', 'mail'],
     'init_xml': [],
     'update_xml': [
         'security/ir.model.access.csv',
         'project_scrum_report.xml',
         'wizard/project_scrum_backlog_create_task_view.xml',
+        'wizard/project_scrum_backlog_merger_view.xml',
+        'wizard/project_scrum_postpone_view.xml',
+#        "wizard/project_scrum_email_view.xml",
         'project_scrum_view.xml',
-        'process/project_scrum_process.xml',
         'wizard/project_scrum_backlog_sprint_view.xml',
-        'wizard/project_scrum_backlog_merger_view.xml',
+        'process/project_scrum_process.xml',
         "board_project_scrum_view.xml",
     ],
     'demo_xml': ['project_scrum_demo.xml'],
+    'test': ['test/project_scrum_report.yml'],
     'installable': True,
     'active': False,
-    'certificate': '',
+    'certificate' : '00736750152003010781',
 }
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: