|
@@ -887,7 +887,10 @@ public class WebMediatorImpl implements ViewMediator {
|
|
|
}).collect(Collectors.toList());
|
|
|
|
|
|
// 测评机构的endPoint
|
|
|
- taskVO.setEndPointVO(new EndPointVO(endPoint.getCollaborativeType(), endPoint.getThreePageUrl()));
|
|
|
+ // 判断否存在配置项
|
|
|
+ if(endPoint != null){
|
|
|
+ taskVO.setEndPointVO(new EndPointVO(endPoint.getCollaborativeType(), endPoint.getThreePageUrl()));
|
|
|
+ }
|
|
|
}
|
|
|
taskDetailsDTO.setAcceptedUserList(taskToUserVOS);
|
|
|
|