|
@@ -137,7 +137,7 @@ func Scii99(cont context.Context) (err error) {
|
|
|
utils.FileLog.Info("Error unmarshalling JSON:", err)
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
+ fmt.Println("获取到的产品数量:", len(listResponse.FirstData.SecondData.Items))
|
|
|
for _, v := range listResponse.FirstData.SecondData.Items {
|
|
|
if v.FromArea != "" && len(listResponse.FirstData.SecondData.Items) > 1 {
|
|
|
continue
|
|
@@ -164,7 +164,7 @@ func Scii99(cont context.Context) (err error) {
|
|
|
|
|
|
// 初始化是不加日期获取全部,初始化后只拿前三天的
|
|
|
if utils.IS_INIT_SCI99 != "true" {
|
|
|
- deailReq.Start = time.Now().AddDate(0,0,-3).Format(utils.FormatDate2)
|
|
|
+ deailReq.Start = time.Now().AddDate(0,0,-5).Format(utils.FormatDate2)
|
|
|
deailReq.End = time.Now().Format(utils.FormatDate2)
|
|
|
}
|
|
|
|
|
@@ -216,7 +216,9 @@ func Scii99(cont context.Context) (err error) {
|
|
|
utils.FileLog.Info("Error unmarshalling JSON:", err)
|
|
|
return
|
|
|
}
|
|
|
-
|
|
|
+ fmt.Println("classifyName:",classifyName)
|
|
|
+ fmt.Println("indexName:",indexName)
|
|
|
+ fmt.Println("数据长度:", len(detailResponse.Data.List))
|
|
|
param := make(map[string]interface{})
|
|
|
param["ListData"] = v
|
|
|
param["DetailData"] = detailResponse
|