获得数据

This commit is contained in:
meixiongfeng 2023-08-16 10:49:29 +08:00
parent 79bbbbc65c
commit 3c7cd6298d

View File

@ -357,6 +357,7 @@ func (this *Activity) GetHdData(session comm.IUserSession, oids []string) (resul
continue continue
} }
} }
if activity.Itype == pb.HdType_HdTypeSign || activity.Itype == pb.HdType_HdLevel || activity.Itype == pb.HdType_HdCelebration {
list, _ = this.modelhdData.getHddataByOid(session.GetUserId(), id) list, _ = this.modelhdData.getHddataByOid(session.GetUserId(), id)
if activity.Itype == pb.HdType_HdTypeSign { if activity.Itype == pb.HdType_HdTypeSign {
if list.Val == 0 || !utils.IsToday(list.Lasttime) { if list.Val == 0 || !utils.IsToday(list.Lasttime) {
@ -418,6 +419,8 @@ func (this *Activity) GetHdData(session comm.IUserSession, oids []string) (resul
} }
} }
} }
}
if list != nil { if list != nil {
result = append(result, list) result = append(result, list)
} }