Commit c75a13a9 authored by Jérome Perrin's avatar Jérome Perrin

GANTT: Do not display exits & operators

parent b082c386
......@@ -349,7 +349,9 @@
var isVisibleStation = function (station) {
// we should be able to define in the backend which station is visible
return input_data.nodes[station]._class != "Dream.QueueManagedJob";
return input_data.nodes[station]._class != "Dream.QueueManagedJob" &&
input_data.nodes[station]._class != "Dream.OperatorManagedJob" &&
input_data.nodes[station]._class != "Dream.ExitJobShop"
};
if (obj._class === 'Dream.Job') {
......
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