|
@@ -1071,6 +1071,11 @@ public class TaskServiceImpl extends BaseServiceImpl<TaskMapper, Task> implement
|
|
|
for (String iId : list) {
|
|
|
//获取
|
|
|
InformationQuery queryinfo = informationQueryService.getById(iId);
|
|
|
+ if (StringUtils.isNotBlank(queryinfo.getFileUserIdAndName())){
|
|
|
+ String userIdAndName = queryinfo.getFileUserIdAndName();
|
|
|
+ String[] split = userIdAndName.split("-");
|
|
|
+ userId = Long.parseLong(split[0]);
|
|
|
+ }
|
|
|
|
|
|
List<AppWbsTreeContractVO> WbsTreeContract = wbsTreeContractClient.searchNodeAllTableInfo(queryinfo.getWbsId() + "", queryinfo.getClassify() + "", queryinfo.getContractId() + "", queryinfo.getProjectId() + "", userId);
|
|
|
List<String> collect = new ArrayList<>();
|