Explorar o código

Merge branch 'feature/event' of http://192.168.1.8:3000/xuyiping/kpt-pasture into feature/event

Yi hai 1 mes
pai
achega
3324042cf9
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      module/crontab/cow_cron.go
  2. 1 1
      module/crontab/cow_indicators_base.go

+ 1 - 1
module/crontab/cow_cron.go

@@ -99,7 +99,7 @@ func (e *Entry) Indicators() error {
 		}
 
 		for pastureId, value := range pastureIndicatorList {
-			e.UpdatePastureIndicators(pastureId, indicatorsDetail, startTime, fmt.Sprintf("%d", value))
+			e.UpdatePastureIndicators(pastureId, indicatorsDetail, startTime, value)
 		}
 	}
 

+ 1 - 1
module/crontab/cow_indicators_base.go

@@ -125,7 +125,7 @@ func (e *Entry) FindSalesVolume(pastureList []*model.AppPastureList, startTime,
 }
 
 func (e *Entry) UpdatePastureIndicators(pastureId int64, indicatorsDetails *model.IndicatorsDetails, dateTime int64, value string) {
-	date := time.Unix(dateTime, 0).Format(model.LayoutDate2)
+	date := time.Unix(dateTime, 0).Format(model.LayoutMonth)
 	where := &model.IndicatorsData{
 		PastureId: pastureId,
 		Date:      date,