...
|
...
|
@@ -307,6 +307,11 @@ func (c *StaffAssessController) ExportUserAssess2() { |
|
|
c.Response(nil, e)
|
|
|
return
|
|
|
}
|
|
|
if len(paramReq.ExportUserId) == 0 {
|
|
|
e := application.ThrowError(application.ARG_ERROR, "请选择人员进行绩效下载")
|
|
|
c.Response(nil, e)
|
|
|
return
|
|
|
}
|
|
|
userReq := middlewares.GetUser(c.Ctx)
|
|
|
paramReq.CompanyId = int(userReq.CompanyId)
|
|
|
paramReq.OperatorId = int(userReq.UserId)
|
...
|
...
|
@@ -356,6 +361,7 @@ func (c *StaffAssessController) GetStaffAsessSelfCountLevel() { |
|
|
c.Response(data, err)
|
|
|
}
|
|
|
|
|
|
// 获取未完成评估任务的执行人员名单
|
|
|
func (c *StaffAssessController) ListExcutorUncompleted() {
|
|
|
srv := service.NewStaffAssessServeice()
|
|
|
paramReq := &query.ListExecutorQuery{}
|
...
|
...
|
|