Se rendre au contenu
Menu
Cette question a été signalée
3 Réponses
5362 Vues

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
Ignorer
Auteur Meilleure réponse

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
Ignorer
Meilleure réponse

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
Ignorer
Auteur

?

Publications associées Réponses Vues Activité
1
oct. 15
8401
0
août 22
2323
1
juil. 19
3698
0
mars 15
6786
1
août 24
1508