浏览代码

Merge branch 'feature/1.0.5_chartinfo' into debug

xyxie 1 年之前
父节点
当前提交
bb8be347dd
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      services/data/chart_info.go

+ 2 - 2
services/data/chart_info.go

@@ -872,7 +872,7 @@ func GetSeasonEdbInfoDataListByXDate(dataList []*data_manage.EdbDataList, latest
 			return
 		}
 
-		if lastDateT.Before(startT) {
+		if lastDateT.Before(startT) || lastDateT.Before(endT) {
 			//如果最新的日期在起始日之前,则跳出循环
 			break
 		}
@@ -1053,7 +1053,7 @@ func GetSeasonEdbInfoDataListByXDateNong(result *data_manage.EdbDataResult, late
 			return
 		}
 
-		if lastDateT.Before(startT) {
+		if lastDateT.Before(startT) || lastDateT.Before(endT) {
 			//如果最新的日期在起始日之前,则跳出循环
 			break
 		}