xyxie 10 kuukautta sitten
vanhempi
commit
cdb300af9a
2 muutettua tiedostoa jossa 10 lisäystä ja 0 poistoa
  1. 6 0
      models/base_calculate.go
  2. 4 0
      models/edb_data_calculate_cjjx.go

+ 6 - 0
models/base_calculate.go

@@ -7,6 +7,7 @@ import (
 	"github.com/shopspring/decimal"
 	"sort"
 	"strconv"
+	"strings"
 	"time"
 )
 
@@ -1036,6 +1037,11 @@ func (obj BaseCalculate) Cjjx() (dateDataMap map[time.Time]float64, err error, e
 
 	// 数据计算
 	for _, currentDate := range dateArr {
+		// 如果遇到闰二月,如2.29,去掉该天数据
+		if strings.Contains(currentDate.Format(utils.FormatDate), "02-29") {
+			continue
+		}
+
 		//农历的超季节性运算,只计算11月--次年5月,分段计算,与数据区间和N数值有关
 		if calendar == "农历" && currentDate.Month() > 5 && currentDate.Month() < 11 {
 			continue

+ 4 - 0
models/edb_data_calculate_cjjx.go

@@ -291,6 +291,10 @@ func refreshAllCalculateCjjx(to orm.TxOrmer, edbInfoId, source, subSource int, f
 		lastDataDay, _ = time.ParseInLocation(utils.FormatDate, dataList[0].DataTime, time.Local)
 	}
 	for _, av := range dateArr {
+		// 如果遇到闰二月,如2.29,去掉该天数据
+		if strings.Contains(av, "02-29") {
+			continue
+		}
 		currentDate, tmpErr := time.ParseInLocation(utils.FormatDate, av, time.Local)
 		if tmpErr != nil {
 			err = tmpErr