切换导航条
此项目
正在载入...
登录
allied-creation
/
performance
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
郑周
2 years ago
提交
67431d59f2a682d857a2ca8b72c80eb6d4206d58
1 个父辈
25dbe862
1. 修复 代码 格式错误
隐藏空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
20 行增加
和
16 行删除
pkg/application/summary_evaluation/service/service2.go
pkg/application/summary_evaluation/service/service2.go
查看文件 @
67431d5
...
...
@@ -499,7 +499,6 @@ func (srv *SummaryEvaluationService) EvaluationHRBPList(param *command.QueryEval
}
userIds
:=
make
([]
int
,
0
)
positionIds
:=
make
([]
int
,
0
)
projectIds
:=
make
([]
int
,
0
)
projectCountMap
:=
map
[
string
]
int
{}
// 自评逾期数量
userMap
:=
map
[
int64
]
*
domain
.
User
{}
// 用户
...
...
@@ -510,22 +509,27 @@ func (srv *SummaryEvaluationService) EvaluationHRBPList(param *command.QueryEval
userIds
=
append
(
userIds
,
it
.
TargetUser
.
UserId
)
projectIds
=
append
(
projectIds
,
list
[
i
]
.
EvaluationProjectId
)
}
_
,
users
,
err
:=
userRepo
.
Find
(
map
[
string
]
interface
{}{
"ids"
:
userIds
,
"companyId"
:
param
.
CompanyId
})
if
err
!=
nil
{
return
nil
,
application
.
ThrowError
(
application
.
INTERNAL_SERVER_ERROR
,
err
.
Error
())
}
for
i
:=
range
users
{
userMap
[
users
[
i
]
.
Id
]
=
users
[
i
]
for
_
,
pid
:=
range
users
[
i
]
.
PositionId
{
positionIds
=
append
(
positionIds
,
pid
)
if
len
(
userIds
)
>
0
{
_
,
users
,
err
:=
userRepo
.
Find
(
map
[
string
]
interface
{}{
"ids"
:
userIds
,
"companyId"
:
param
.
CompanyId
})
if
err
!=
nil
{
return
nil
,
application
.
ThrowError
(
application
.
INTERNAL_SERVER_ERROR
,
err
.
Error
())
}
positionIds
:=
make
([]
int
,
0
)
for
i
:=
range
users
{
userMap
[
users
[
i
]
.
Id
]
=
users
[
i
]
for
_
,
pid
:=
range
users
[
i
]
.
PositionId
{
positionIds
=
append
(
positionIds
,
pid
)
}
}
if
len
(
positionIds
)
>
0
{
_
,
positions
,
err
:=
positionRepo
.
Find
(
map
[
string
]
interface
{}{
"ids"
:
positionIds
,
"companyId"
:
param
.
CompanyId
})
if
err
!=
nil
{
return
nil
,
application
.
ThrowError
(
application
.
INTERNAL_SERVER_ERROR
,
err
.
Error
())
}
for
i
:=
range
positions
{
positionMap
[
positions
[
i
]
.
Id
]
=
positions
[
i
]
}
}
}
_
,
positions
,
err
:=
positionRepo
.
Find
(
map
[
string
]
interface
{}{
"ids"
:
positionIds
,
"companyId"
:
param
.
CompanyId
})
if
err
!=
nil
{
return
nil
,
application
.
ThrowError
(
application
.
INTERNAL_SERVER_ERROR
,
err
.
Error
())
}
for
i
:=
range
positions
{
positionMap
[
positions
[
i
]
.
Id
]
=
positions
[
i
]
}
if
len
(
projectIds
)
>
0
{
...
...
请
注册
或
登录
后发表评论