|
@@ -3,6 +3,7 @@ package service
|
|
|
import (
|
|
|
"fmt"
|
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
|
+ "log"
|
|
|
"strconv"
|
|
|
"strings"
|
|
|
"sync"
|
|
@@ -151,7 +152,7 @@ func DistributeClueShow(this *biservice.DistributeClueShowReq, allocationCap int
|
|
|
isOk = false
|
|
|
if this.DataType == 3 {
|
|
|
dclue(id, positionId, this.IsTask, this.PositionId) //分线索
|
|
|
- fmt.Println("11111111", id, positionId)
|
|
|
+ log.Println("11111111", id, positionId)
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -245,7 +246,7 @@ func DistributeClueShow(this *biservice.DistributeClueShowReq, allocationCap int
|
|
|
if this.DataType == 3 {
|
|
|
for _, vv := range v {
|
|
|
dclue(vv, paid, this.IsTask, this.PositionId) //分线索*/
|
|
|
- fmt.Println("2222", vv, paid)
|
|
|
+ log.Println("2222", vv, paid)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -357,7 +358,7 @@ func DistributeClueShow(this *biservice.DistributeClueShowReq, allocationCap int
|
|
|
}()
|
|
|
id := common.Int64All(i["id"])
|
|
|
dclue(id, rdata[minIndex].PositionId, this.IsTask, this.PositionId)
|
|
|
- fmt.Println("3333", id, rdata[minIndex].PositionId)
|
|
|
+ log.Println("3333", id, rdata[minIndex].PositionId)
|
|
|
}(i)
|
|
|
}
|
|
|
wg.Wait()
|