Explorar el Código

Merge branch 'feature/1.0.5_chartinfo' into debug

xyxie hace 1 año
padre
commit
bb8be347dd
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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
 		}