|
@@ -1086,6 +1086,7 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
near, zbtime := LastTimeCoop(buyerId, common.ObjToString(m["name"]), "adiffb")
|
|
|
tmp := ResultData{
|
|
|
SourceType: "adiffb",
|
|
|
+ BuyerId: common.ObjToString(m["nameId"]),
|
|
|
EntName: common.ObjToString(m["name"]),
|
|
|
ProjectNum: common.IntAll(m["coop_size"]),
|
|
|
TotalAmount: common.Float64All(m["coop_amount"]),
|
|
@@ -1166,6 +1167,8 @@ func (t *OwnerService) CandidateChannel() ([]*ResultData, int, int, int, int) {
|
|
|
returnData[k] = value
|
|
|
if t.Type != "" && t.Type != value.SourceType {
|
|
|
continue
|
|
|
+ } else if value.BuyerId == "" {
|
|
|
+ continue
|
|
|
}
|
|
|
result = append(result, value)
|
|
|
}
|