Ver código fonte

Merge branch 'bzq/history_chart_range' of eta_gn_server/eta_api into master

baoziqiang 2 semanas atrás
pai
commit
6118cf2b3a
1 arquivos alterados com 5 adições e 1 exclusões
  1. 5 1
      utils/common.go

+ 5 - 1
utils/common.go

@@ -1765,7 +1765,11 @@ func GetDateByDateTypeV2(dateType int, tmpStartDate, tmpEndDate string, startYea
 			startDate = startDate + "-01"
 		}
 		if strings.Count(endDate, "-") == 1 {
-			endDate = endDate + "-01"
+			endTime, err := time.Parse(FormatYearMonthDate, endDate)
+			if err != nil {
+				return
+			}
+			endDate = endTime.AddDate(0, 1, -1).Format(FormatDate)
 		}
 	}