Browse Source

Merge branch 'bzq1/history_chart_range' of eta_server/eta_api into master

baoziqiang 2 tuần trước cách đây
mục cha
commit
8ca2f0faa1
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  1. 5 1
      utils/common.go

+ 5 - 1
utils/common.go

@@ -1813,7 +1813,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)
 		}
 	}