tasks are presented in different way (first task_id and then stationID) by the Gantt graph

parent 20bed7cb
...@@ -53,7 +53,7 @@ class JSComponentGantt(plugin.OutputPreparationPlugin, TimeSupportMixin): ...@@ -53,7 +53,7 @@ class JSComponentGantt(plugin.OutputPreparationPlugin, TimeSupportMixin):
if not taskId: if not taskId:
task_to_display = record['stationId'] task_to_display = record['stationId']
else: else:
task_to_display = record['stationId']+"; "+taskId task_to_display = taskId + "; " + record['stationId']
# get the exitTime from the record # get the exitTime from the record
exitTime = record.get("exitTime", None) exitTime = record.get("exitTime", None)
if exitTime == None: if exitTime == None:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment