mirror of
https://gitee.com/fit2cloud-feizhiyun/MeterSphere.git
synced 2024-11-29 18:48:13 +08:00
fix(工作台): 修复缺陷本地和三方平台统计未合并问题
This commit is contained in:
parent
4e7a033f68
commit
36f1172097
@ -1305,9 +1305,13 @@ public class DashboardService {
|
||||
}
|
||||
Set<String>handleUsers = new HashSet<>();
|
||||
String localHandleUser = hasHandleUser ? userId : null;
|
||||
handleUsers.add(localHandleUser);
|
||||
if (StringUtils.isNotBlank(localHandleUser)) {
|
||||
handleUsers.add(localHandleUser);
|
||||
}
|
||||
String handleUser = hasHandleUser ? handleUserId : null;
|
||||
handleUsers.add(handleUser);
|
||||
if (StringUtils.isNotBlank(handleUser)) {
|
||||
handleUsers.add(handleUser);
|
||||
}
|
||||
String createUser = hasCreateUser ? userId : null;
|
||||
String platformName = projectApplicationService.getPlatformName(projectId);
|
||||
Set<String> platforms = getPlatforms(platformName);
|
||||
|
Loading…
Reference in New Issue
Block a user