|
@@ -480,7 +480,9 @@ public class ApsServiceImpl implements ApsService {
|
|
|
}
|
|
|
|
|
|
for (ProductionProcesses productionProcesses : apsSolutionTh.getProcessesList()) {
|
|
|
- Collections.sort(productionProcesses.getThFzdDelays());
|
|
|
+ if(productionProcesses.getThFzdDelays() != null && productionProcesses.getThFzdDelays().size() > 0){
|
|
|
+ Collections.sort(productionProcesses.getThFzdDelays());
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|