切换导航条
此项目
正在载入...
登录
allied-creation
/
performance
·
提交
转到一个项目
GitLab
转到群组
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
tangxvhui
2 years ago
提交
3fcdffbc5c4f581692afafe9a175350c25ae6f15
1 个父辈
300667fb
调整周期列表输出
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
24 行增加
和
13 行删除
pkg/infrastructure/dao/staff_assess_dao_2.go
pkg/infrastructure/dao/summary_evaluation_dao.go
pkg/infrastructure/dao/staff_assess_dao_2.go
查看文件 @
3fcdffb
...
...
@@ -449,19 +449,21 @@ func (d *StaffAssessDao) ListCycleAndProject(userId int, companyId int, cycleId
staff_assess.evaluation_project_name ,
target_user->>'userId' as target_user_id
from staff_assess
join evaluation_cycle on staff_assess.cycle_id =evaluation_cycle.id
where 1=1
and company_id=?
and target_user->>'userId'=?
and "types"='self'
and staff_assess.company_id=?
and staff_assess.target_user->>'userId'=?
and staff_assess."types"='self'
and staff_assess.deleted_at isnull
`
condition
:=
[]
interface
{}{
companyId
,
strconv
.
Itoa
(
userId
)}
if
cycleId
>
0
{
condition
=
append
(
condition
,
cycleId
)
sqlStr
+=
` and cycle_id=? `
sqlStr
+=
` and
staff_assess.
cycle_id=? `
}
condition
=
append
(
condition
,
limit
,
offset
)
sqlStr
+=
` order by cycle_id desc limit ? offset ? `
sqlStr
+=
` order by
staff_assess.
cycle_id desc limit ? offset ? `
tx
:=
d
.
transactionContext
.
PgTx
_
,
err
=
tx
.
Query
(
&
result
,
sqlStr
,
condition
...
)
...
...
pkg/infrastructure/dao/summary_evaluation_dao.go
查看文件 @
3fcdffb
...
...
@@ -85,27 +85,33 @@ func (d *SummaryEvaluationDao) CountExecutorCycleList(companyId int, executorId
}
type
TargetUserCycle
struct
{
CycleId
string
`pg:"cycle_id" `
//周期id
CycleName
string
`pg:"cycle_name"`
//周期名称
BeginTime
time
.
Time
`pg:"begin_time"`
EndTime
time
.
Time
`pg:"end_time"`
CycleId
string
`pg:"cycle_id" `
//周期id
CycleName
string
`pg:"cycle_name"`
//周期名称
BeginTime
time
.
Time
`pg:"begin_time"`
EndTime
time
.
Time
`pg:"end_time"`
EvaluationProjectId
string
`pg:"evaluation_project_id"`
EvaluationProjectName
string
`pg:"evaluation_project_name"`
TargetUserId
string
`pg:"target_user_id"`
}
// GetExecutorCycleList 获取被评估目标人拥有的周期列表
// executorId 执行人id
// offset,limit 分页
func
(
d
*
SummaryEvaluationDao
)
GetTargetUserCycleList
(
executo
rId
int
,
offset
int
,
limit
int
,
evaluationType
int
)
([]
TargetUserCycle
,
error
)
{
func
(
d
*
SummaryEvaluationDao
)
GetTargetUserCycleList
(
targetUse
rId
int
,
offset
int
,
limit
int
,
evaluationType
int
)
([]
TargetUserCycle
,
error
)
{
sqlStr
:=
`select
distinct
summary_evaluation.cycle_id ,
summary_evaluation.begin_time ,
summary_evaluation.cycle_name
summary_evaluation.cycle_name ,
summary_evaluation.evaluation_project_id ,
summary_evaluation.evaluation_project_name ,
summary_evaluation.target_user ->>'userId' as target_user_id
from summary_evaluation
where summary_evaluation.deleted_at isnull and summary_evaluation.target_user ->>'userId'='?'
`
tx
:=
d
.
transactionContext
.
PgTx
condition
:=
[]
interface
{}{
executo
rId
,
targetUse
rId
,
}
if
evaluationType
>
0
{
...
...
@@ -147,7 +153,10 @@ func (d *SummaryEvaluationDao) TargetUnconfirmedCycleList(companyId int, executo
summary_evaluation.cycle_id,
summary_evaluation.begin_time,
summary_evaluation.end_time,
summary_evaluation.cycle_name
summary_evaluation.cycle_name ,
summary_evaluation.evaluation_project_id ,
summary_evaluation.evaluation_project_name ,
summary_evaluation.target_user ->>'userId' as target_user_id
from summary_evaluation
where summary_evaluation.deleted_at isnull
and summary_evaluation.company_id='?'
...
...
请
注册
或
登录
后发表评论