Browse Source

[CHG] b_shift : generated shifts name computation

pull/125/head
Elouan Le Bars 4 years ago
parent
commit
fe6c4264eb
  1. 9
      beesdoo_shift/models/planning.py

9
beesdoo_shift/models/planning.py

@ -167,7 +167,14 @@ class TaskTemplate(models.Model):
status.temporary_exempt_start_date <= rec.start_date[:10] and status.temporary_exempt_end_date >= rec.end_date[:10]:
worker_id = False
tasks |= tasks.create({
'name' : "%s %s (%s - %s) [%s]" % (rec.name, rec.day_nb_id.name, float_to_time(rec.start_time), float_to_time(rec.end_time), i),
'name' : "[%s] %s %s (%s - %s) [%s]" % (
rec.start_date[:10],
rec.planning_id.name,
rec.day_nb_id.name,
float_to_time(rec.start_time),
float_to_time(rec.end_time),
i,
),
'task_template_id' : rec.id,
'task_type_id' : rec.task_type_id.id,
'super_coop_id': rec.super_coop_id.id,

Loading…
Cancel
Save