|
@@ -3,7 +3,7 @@ package services
|
|
|
import (
|
|
|
"context"
|
|
|
"encoding/json"
|
|
|
- "eta/eta_forum_task/models"
|
|
|
+ "eta/eta_forum_task/models"
|
|
|
"eta/eta_forum_task/services/alarm_msg"
|
|
|
"eta/eta_forum_task/services/eta_forum"
|
|
|
"eta/eta_forum_task/utils"
|
|
@@ -312,7 +312,7 @@ func ChartInfoSaveBatch() (err error) {
|
|
|
success := 0
|
|
|
|
|
|
// 循环更新100个图表数据
|
|
|
- for i := 0; offset < total; i++ {
|
|
|
+ for i := 0; offset <= total; i++ {
|
|
|
// 查询需要更新的图表信息
|
|
|
chartInfos, e := models.GetChartInfoListByCondition(condition, []interface{}{}, offset, pageSize)
|
|
|
if e != nil {
|
|
@@ -337,7 +337,7 @@ func ChartInfoSaveBatch() (err error) {
|
|
|
success += 1
|
|
|
}
|
|
|
|
|
|
- offset = (i + 1) * pageSize
|
|
|
+ offset += pageSize
|
|
|
}
|
|
|
utils.FileLog.Info("更新图表数据完成, 更新图表数据总数:", success)
|
|
|
}
|
|
@@ -379,7 +379,7 @@ func ChartInfoSaveBatch() (err error) {
|
|
|
success := 0
|
|
|
|
|
|
// 循环更新100个图表数据
|
|
|
- for i := 0; offset < total; i++ {
|
|
|
+ for i := 0; offset <= total; i++ {
|
|
|
// 查询需要更新的图表信息
|
|
|
chartInfos, e := models.GetChartInfoListByCondition(condition, []interface{}{chartClassifyIdList}, offset, pageSize)
|
|
|
if e != nil {
|
|
@@ -404,7 +404,7 @@ func ChartInfoSaveBatch() (err error) {
|
|
|
success += 1
|
|
|
}
|
|
|
|
|
|
- offset = (i + 1) * pageSize
|
|
|
+ offset += pageSize
|
|
|
}
|
|
|
utils.FileLog.Info("上传图表数据完成, 上传图表数据总数:", success)
|
|
|
|