[FIX] project: Change the help of dealy hours

lp bug: https://launchpad.net/bugs/898644 fixed

bzr revid: kjo@tinyerp.com-20111202084312-qofmgnjmwicko9wi
This commit is contained in:
Kuldeep Joshi (OpenERP) 2011-12-02 14:13:12 +05:30
parent 49be766d10
commit 6d1cf5dc29
1 changed files with 1 additions and 1 deletions

View File

@ -625,7 +625,7 @@ class task(osv.osv):
'project.task': (lambda self, cr, uid, ids, c={}: ids, ['work_ids', 'remaining_hours', 'planned_hours','state'], 10),
'project.task.work': (_get_task, ['hours'], 10),
}),
'delay_hours': fields.function(_hours_get, string='Delay Hours', multi='hours', help="Computed as difference of the time estimated by the project manager and the real time to close the task.",
'delay_hours': fields.function(_hours_get, string='Delay Hours', multi='hours', help="Computed as difference between planned hours by the project manager and the total hours of the task.",
store = {
'project.task': (lambda self, cr, uid, ids, c={}: ids, ['work_ids', 'remaining_hours', 'planned_hours'], 10),
'project.task.work': (_get_task, ['hours'], 10),