Ir al contenido
Menú
Se marcó esta pregunta
3 Respuestas
5252 Vistas

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
Descartar
Autor Mejor respuesta

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
Descartar
Mejor respuesta

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
Descartar
Autor

?

Publicaciones relacionadas Respuestas Vistas Actividad
1
oct 15
8234
0
ago 22
2181
1
jul 19
3593
0
mar 15
6677
1
ago 24
1362