[IMP] scrum: improve label
authorqdp-launchpad@tinyerp.com <>
Fri, 9 Jul 2010 14:18:47 +0000 (19:48 +0530)
committerqdp-launchpad@tinyerp.com <>
Fri, 9 Jul 2010 14:18:47 +0000 (19:48 +0530)
bzr revid: qdp-launchpad@tinyerp.com-20100709141847-eavjuhglrxc50a3c

addons/scrum/scrum.py

index d443496..673c478 100644 (file)
@@ -254,7 +254,7 @@ class scrum_product_backlog(osv.osv):
         'tasks_id': fields.one2many('project.task', 'product_backlog_id', 'Tasks Details'),
         'state': fields.selection([('draft','Draft'),('open','Open'),('pending','Pending'),('done','Done'),('cancel','Cancelled')], 'State', required=True),
         'progress': fields.function(_calc_progress, method=True, string='Progress', help="Computed as: Time Spent / Total Time."),
-        'effective_hours': fields.function(_calc_effective, method=True, string='Effective hours', help="Computed using the sum of the task work done (Time spent on tasks)"),
+        'effective_hours': fields.function(_calc_effective, method=True, string='Spent Hours', help="Computed using the sum of the time spent on every related tasks"),
         'expected_hours': fields.float('Planned Hours', help='Estimated total time to do the Backlog'),
         'create_date': fields.datetime("Creation Date", readonly=True),
         'task_hours': fields.function(_calc_task, method=True, string='Task Hours', help='Estimated time of the total hours of the tasks')