|
@@ -357,6 +357,7 @@ public class TimeTask {
|
|
|
|
|
|
List<String> stringList = dutyRoleAccounts.parallelStream().map(DutyRoleAccount::getUdAccountUuid).filter(Objects::nonNull).distinct().collect(Collectors.toList());
|
|
List<String> stringList = dutyRoleAccounts.parallelStream().map(DutyRoleAccount::getUdAccountUuid).filter(Objects::nonNull).distinct().collect(Collectors.toList());
|
|
List<DutyAccount> accounts = new ArrayList<>();
|
|
List<DutyAccount> accounts = new ArrayList<>();
|
|
|
|
+ List<DutyAccount> accountList = new ArrayList<>();
|
|
// 用户信息请求
|
|
// 用户信息请求
|
|
stringList.forEach(t -> {
|
|
stringList.forEach(t -> {
|
|
ResponseEntity<JSONObject> responseEntity = restTemplate.exchange(idaasUrlPrefix + userInfoApi + "?userUuid=" + t, HttpMethod.GET, entity, JSONObject.class);
|
|
ResponseEntity<JSONObject> responseEntity = restTemplate.exchange(idaasUrlPrefix + userInfoApi + "?userUuid=" + t, HttpMethod.GET, entity, JSONObject.class);
|
|
@@ -370,12 +371,13 @@ public class TimeTask {
|
|
} else {
|
|
} else {
|
|
accounts.add(account);
|
|
accounts.add(account);
|
|
}
|
|
}
|
|
|
|
+ accountList.add(account);
|
|
});
|
|
});
|
|
if (accounts.size() > 0) {
|
|
if (accounts.size() > 0) {
|
|
accountService.saveBatch(accounts);
|
|
accountService.saveBatch(accounts);
|
|
}
|
|
}
|
|
|
|
|
|
- List<String> collect = accounts.parallelStream().map(DutyAccount::getOuUuid).filter(Objects::nonNull).distinct().collect(Collectors.toList());
|
|
|
|
|
|
+ List<String> collect = accountList.parallelStream().map(DutyAccount::getOuUuid).filter(Objects::nonNull).distinct().collect(Collectors.toList());
|
|
List<DutyDepartment> departments = new ArrayList<>();
|
|
List<DutyDepartment> departments = new ArrayList<>();
|
|
// 用户信息请求
|
|
// 用户信息请求
|
|
collect.forEach(f -> {
|
|
collect.forEach(f -> {
|