|
@@ -1110,7 +1110,7 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
RecentTime: zbtime,
|
|
|
NearlyYears: near,
|
|
|
}
|
|
|
- if tmp.BuyerId == "" {
|
|
|
+ if tmp.EntId == "" || tmp.BuyerId == "" {
|
|
|
continue
|
|
|
}
|
|
|
a1++
|
|
@@ -1130,7 +1130,7 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
EntId: common.ObjToString(m["nameId"]),
|
|
|
BuyerId: buyerId,
|
|
|
}
|
|
|
- if tmp.BuyerId == "" {
|
|
|
+ if tmp.EntId == "" || tmp.BuyerId == "" {
|
|
|
continue
|
|
|
}
|
|
|
a2++
|
|
@@ -1151,7 +1151,7 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
EntId: common.ObjToString(m["b_id"]),
|
|
|
BuyerId: buyerId,
|
|
|
}
|
|
|
- if tmp.BuyerId == "" {
|
|
|
+ if tmp.EntId == "" || tmp.BuyerId == "" {
|
|
|
continue
|
|
|
}
|
|
|
a3++
|
|
@@ -1171,7 +1171,7 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
EntId: common.ObjToString(m["b_id"]),
|
|
|
BuyerId: buyerId,
|
|
|
}
|
|
|
- if tmp.BuyerId == "" {
|
|
|
+ if tmp.EntId == "" || tmp.BuyerId == "" {
|
|
|
continue
|
|
|
}
|
|
|
a4++
|