Merge remote-tracking branch 'origin/feature-streamer_nick_audit-wxy-20241209' into test
This commit is contained in:
commit
c887e7bbc6
|
@ -4043,9 +4043,6 @@ func (m *Mongo) GetTextAuditTaskList(ctx *gin.Context, req *textaudittaskproto.O
|
|||
if req.Status != nil {
|
||||
query["status"] = util.DerefInt64(req.Status)
|
||||
}
|
||||
if req.Role != nil {
|
||||
query["role"] = util.DerefInt64(req.Role)
|
||||
}
|
||||
if req.NotAlignedOpt != 0 {
|
||||
query["is_aligned"] = qmgo.M{
|
||||
"$ne": consts.TextAuditIsAligned_Yes,
|
||||
|
@ -4079,10 +4076,6 @@ func (m *Mongo) GetTextAuditTaskListByCollectionInfos(ctx *gin.Context, database
|
|||
"del_flag": 0,
|
||||
}
|
||||
|
||||
if role != nil {
|
||||
query["role"] = util.DerefInt64(role)
|
||||
}
|
||||
|
||||
orClause := make([]qmgo.M, 0)
|
||||
for i := range databases {
|
||||
orClause = append(orClause, qmgo.M{
|
||||
|
|
|
@ -3505,6 +3505,18 @@ func (s *Service) OpGetTextAuditTaskVOList(ctx *gin.Context, req *textaudittaskp
|
|||
return
|
||||
}
|
||||
|
||||
// 主播昵称审核
|
||||
if util.DerefInt64(req.Role) == consts.Streamer {
|
||||
filterVoList := make([]*textaudittaskproto.TextAuditTaskVO, 0)
|
||||
for _, vo := range volist {
|
||||
account := acctMp[vo.GetMid()]
|
||||
if account != nil && account.GetRole() == consts.Streamer {
|
||||
filterVoList = append(filterVoList, vo)
|
||||
}
|
||||
}
|
||||
volist = filterVoList
|
||||
}
|
||||
|
||||
for _, vo := range volist {
|
||||
vo.Account = &accountproto.OpListVO{}
|
||||
vo.Account.CopyAccount(acctMp[vo.GetMid()])
|
||||
|
|
Loading…
Reference in New Issue