|
@@ -14301,6 +14301,10 @@ public class ProjectServiceImpl extends ServiceImpl<ProjectMapper, Project> impl
|
|
|
StringBuilder executorName = new StringBuilder( t.getExecutorName()==null?"":t.getExecutorName());
|
|
|
StringBuilder executorColor = new StringBuilder( t.getExecutorColor()==null?"":t.getExecutorColor());
|
|
|
for (String userId : split1) {
|
|
|
+ List<String> list = Arrays.asList(executorId.toString().split(","));
|
|
|
+ if(list.contains(userId)){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Optional<User> first = userList.stream().filter(u -> u.getId().equals(userId)).findFirst();
|
|
|
if(first.isPresent()){
|
|
|
TaskExecutor taskExecutor=new TaskExecutor();
|