瀏覽代碼

Merge branch 'ETA_1.9.4' into debug

zwxi 8 月之前
父節點
當前提交
c0cf4db8ba
共有 1 個文件被更改,包括 14 次插入2 次删除
  1. 14 2
      services/data/chart_info.go

+ 14 - 2
services/data/chart_info.go

@@ -3225,7 +3225,13 @@ func GetChartConvertEdbData(chartInfoId, chartType int, calendar, startDate, end
 	switch chartType {
 	case 2: // 季节性图
 		if seasonExtraConfig != "" {
-			dataResp, err = SeasonChartData(edbList, seasonExtraConfig)
+			// 季节性图计算不管图上数据时间,拿所有数据
+			_, tempEdbList, e := getEdbDataMapList(chartInfoId, chartType, calendar, "1990-01-01", "", mappingList, seasonExtraConfig)
+			if e != nil {
+				err = e
+				return
+			}
+			dataResp, err = SeasonChartData(tempEdbList, seasonExtraConfig)
 		} else {
 			// 兼容无配置的老图
 			dataResp = new(data_manage.SeasonChartResp)
@@ -3753,7 +3759,13 @@ func GetChartEdbDataV2(chartInfoId, chartType int, calendar, startDate, endDate
 	switch chartType {
 	case 2: // 季节性图
 		if seasonExtraConfig != "" {
-			dataResp, err = SeasonChartData(edbList, seasonExtraConfig)
+			// 季节性图计算不管图上数据时间,拿所有数据
+			_, tempEdbList, e := getEdbDataMapList(chartInfoId, chartType, calendar, "1990-01-01", "", mappingList, seasonExtraConfig)
+			if e != nil {
+				err = e
+				return
+			}
+			dataResp, err = SeasonChartData(tempEdbList, seasonExtraConfig)
 		} else {
 			// 兼容无配置的老图
 			dataResp = new(data_manage.SeasonChartResp)