...
|
...
|
@@ -172,7 +172,7 @@ func (srv *MessagePersonalService) TodayMessageTaskStageAnomaly(param *command.G |
|
|
childUserId2 := []string{}
|
|
|
for _, val := range childUser {
|
|
|
if val.Level >= 3 {
|
|
|
childUserId = append(childUserId, strconv.Itoa(val.Id))
|
|
|
childUserId2 = append(childUserId2, strconv.Itoa(val.Id))
|
|
|
}
|
|
|
}
|
|
|
// 作为上级, 我的下下级员工的异常里程碑
|
...
|
...
|
@@ -371,7 +371,7 @@ func (srv *MessagePersonalService) TodayMessageTaskRecordAnomaly(param *command. |
|
|
childUserId2 := []string{}
|
|
|
for _, val := range childUser {
|
|
|
if val.Level >= 3 {
|
|
|
childUserId = append(childUserId, strconv.Itoa(val.Id))
|
|
|
childUserId2 = append(childUserId2, strconv.Itoa(val.Id))
|
|
|
}
|
|
|
}
|
|
|
// 我作为上级,获取我的下下级的异常任务
|
...
|
...
|
|