Skip to Content
Menu
This question has been flagged
3 Replies
3971 Views

Hello , 

My problem is that I can overbook the time when I write my hours to a task. 

When I get to the time limit, it shows like -2.00hours in the "remaining hours" field.

How can I set this, that the employee can't overbook the time I set.


I need a modul or a way to stop the overbooking on the projects. anyone have an idea?


Avatar
Discard
Author Best Answer

How can I stop the negative number at project.task?

I want to stop that the field "remaining_hours" can go under 0...


I try to build a module for that, but how can I overwrite a function from the odoo basic module "project"?


example: 

    def _hours_get(self, cr, uid, ids, field_names, args, context=None):

res = {}
cr.execute("SELECT task_id, COALESCE(SUM(hours),0) FROM project_task_work WHERE task_id IN %s GROUP BY task_id",(tuple(ids),))
hours = dict(cr.fetchall())
for task in self.browse(cr, uid, ids, context=context):
res[task.id] = {'effective_hours': hours.get(task.id, 0.0), 'total_hours': (task.remaining_hours or 0.0) + hours.get(task.id, 0.0)}
res[task.id]['delay_hours'] = res[task.id]['total_hours'] - task.planned_hours
res[task.id]['progress'] = 0.0
if (task.remaining_hours < 0 ):
task.planned_hours = 100.0
if (task.remaining_hours + hours.get(task.id, 0.0)):
res[task.id]['progress'] = round(min(100.0 * hours.get(task.id, 0.0) / res[task.id]['total_hours'], 99.99),2)
# TDE CHECK: if task.state in ('done','cancelled'):
if task.stage_id and task.stage_id.fold:
res[task.id]['progress'] = 100.0
return res
Avatar
Discard
Best Answer

I think you can do this restriction by coding, i.e. in the write method of the task screen add a check that the final remaining hours must be greater than zero 

Avatar
Discard
Author

?

Related Posts Replies Views Activity
1
Oct 15
7021
0
Aug 22
1109
1
Jul 19
2723
0
Mar 15
5538
1
Aug 24
180