|
@@ -90,6 +90,9 @@ func (e *Entry) CowEstrusWarning(pastureId int64, xToday *XToday) (err error) {
|
|
|
if cft < float32(xToday.ActiveLow-XAdjust21) {
|
|
|
continue
|
|
|
}
|
|
|
+ if neckActiveHabitMap[habit.CowId] == nil {
|
|
|
+ neckActiveHabitMap[habit.CowId] = make([]*model.NeckActiveHabit, 0)
|
|
|
+ }
|
|
|
neckActiveHabitMap[habit.CowId] = append(neckActiveHabitMap[habit.CowId], habit)
|
|
|
}
|
|
|
|
|
@@ -121,7 +124,7 @@ func (e *Entry) CowEstrusWarning(pastureId int64, xToday *XToday) (err error) {
|
|
|
maxHigh = habit.FilterHigh
|
|
|
}
|
|
|
// 获取最新的 CreateTime
|
|
|
- activeTimeParse, _ := time.Parse(habit.ActiveTime, model.LayoutTime)
|
|
|
+ activeTimeParse, _ := time.Parse(model.LayoutTime, habit.ActiveTime)
|
|
|
if activeTimeParse.After(lastActiveDate) {
|
|
|
lastActiveDate = activeTimeParse
|
|
|
}
|
|
@@ -148,12 +151,6 @@ func (e *Entry) CowEstrusWarning(pastureId int64, xToday *XToday) (err error) {
|
|
|
checkResult := getResult(before3Data, maxCft, cowEstrus)
|
|
|
isPeak := pasturePb.IsShow_Ok
|
|
|
|
|
|
- cowEstrusStartData := e.FindCowEstrusFirstTime(pastureId, cowId, nowTime)
|
|
|
- firstTime := ""
|
|
|
- if cowEstrusStartData != nil {
|
|
|
- firstTime = cowEstrusStartData.FirstTime
|
|
|
- }
|
|
|
-
|
|
|
zaplog.Info("CowEstrusWarning",
|
|
|
zap.Any("level", level),
|
|
|
zap.Any("b48", b48),
|
|
@@ -167,10 +164,9 @@ func (e *Entry) CowEstrusWarning(pastureId int64, xToday *XToday) (err error) {
|
|
|
zap.Any("before3Data", before3Data),
|
|
|
zap.Any("cowEstrus", cowEstrus),
|
|
|
zap.Any("cowInfo", cowInfo),
|
|
|
- zap.Any("firstTime", firstTime),
|
|
|
zap.Any("cowHabitList", cowHabitList),
|
|
|
)
|
|
|
- newNeckRingEstrus := model.NewNeckRingEstrus(pastureId, cowInfo, level, checkResult, isShow, firstTime)
|
|
|
+ newNeckRingEstrus := model.NewNeckRingEstrus(pastureId, cowInfo, level, checkResult, isShow)
|
|
|
newNeckRingEstrus.LastTime = lastEstrusDate
|
|
|
newNeckRingEstrus.ActiveTime = lastActiveDate.Format(model.LayoutTime)
|
|
|
newNeckRingEstrus.DayHigh = dayHigh
|
|
@@ -187,11 +183,90 @@ func (e *Entry) CowEstrusWarning(pastureId int64, xToday *XToday) (err error) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- return err
|
|
|
+ // 更新牛只首次发情时间
|
|
|
+ e.UpdateEstrusFirstTime1(pastureId, nowTime)
|
|
|
+ e.UpdateEstrusIsPeak(pastureId, nowTime)
|
|
|
+ e.UpdateEstrusFirstTime2(pastureId, nowTime)
|
|
|
+ e.UpdateEstrusFirstTime3(pastureId, nowTime)
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+// UpdateEstrusFirstTime1 更新牛只首次发情时间
|
|
|
+func (e *Entry) UpdateEstrusFirstTime1(pastureId int64, xToday time.Time) {
|
|
|
+ neckRingEstrusList := e.FindNeckRingEstrusByFirstTimeEmpty(pastureId)
|
|
|
+ for _, v := range neckRingEstrusList {
|
|
|
+ cowEstrusStartData := e.FindCowEstrusFirstTime1(pastureId, v.CowId, xToday)
|
|
|
+ if cowEstrusStartData != nil && cowEstrusStartData.FirstTime != "" {
|
|
|
+ if err := e.DB.Model(new(model.NeckRingEstrus)).
|
|
|
+ Where("id = ?", v.Id).
|
|
|
+ Update("first_time", cowEstrusStartData.FirstTime).Error; err != nil {
|
|
|
+ zaplog.Error("UpdateEstrusFirstTime1", zap.Any("v", v), zap.Any("err", err), zap.Any("cowEstrusStartData", cowEstrusStartData))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (e *Entry) UpdateEstrusFirstTime2(pastureId int64, xToday time.Time) {
|
|
|
+ neckRingEstrusList := e.FindNeckRingEstrusByFirstTimeEmpty(pastureId)
|
|
|
+ for _, v := range neckRingEstrusList {
|
|
|
+ zaplog.Info("UpdateEstrusFirstTime2", zap.Any("v", v))
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (e *Entry) UpdateEstrusFirstTime3(pastureId int64, xToday time.Time) {
|
|
|
+ neckRingEstrusList := e.FindNeckRingEstrusByFirstTimeEmpty(pastureId)
|
|
|
+ for _, v := range neckRingEstrusList {
|
|
|
+ activeTime, _ := time.Parse(model.LayoutTime, v.ActiveTime)
|
|
|
+ if activeTime.After(xToday.AddDate(0, 0, -2)) {
|
|
|
+ if err := e.DB.Model(new(model.NeckRingEstrus)).
|
|
|
+ Where("id = ?", v.Id).
|
|
|
+ Update("first_time", v.ActiveTime).Error; err != nil {
|
|
|
+ zaplog.Error("UpdateEstrusFirstTime1", zap.Any("v", v), zap.Any("err", err))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (e *Entry) UpdateEstrusIsPeak(pastureId int64, xToday time.Time) {
|
|
|
+ neckRingEstrusList := make([]*model.NeckRingEstrus, 0)
|
|
|
+ if err := e.DB.Model(new(model.NeckRingEstrus)).
|
|
|
+ Where("first_time != ?", "").
|
|
|
+ Where("is_peak == ?", pasturePb.IsShow_Ok).
|
|
|
+ Where("is_show = ?", pasturePb.IsShow_Ok).
|
|
|
+ Where("pasture_id = ?", pastureId).
|
|
|
+ Find(&neckRingEstrusList).Error; err != nil {
|
|
|
+ zaplog.Error("UpdateEstrusIsPeak", zap.Any("Find", err))
|
|
|
+ }
|
|
|
+
|
|
|
+ for _, estrus := range neckRingEstrusList {
|
|
|
+ activeTime, _ := time.Parse(model.LayoutTime, estrus.ActiveTime)
|
|
|
+ if activeTime.Before(xToday) || activeTime.After(xToday.AddDate(0, 0, 1)) {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+
|
|
|
+ var exists bool
|
|
|
+ if err := e.DB.Model(new(model.NeckRingEstrus)).
|
|
|
+ Where("cow_id = ?", estrus.CowId).
|
|
|
+ Where("first_time != ?", "").
|
|
|
+ Where("active_time BETWEEN ? AND ?", xToday, xToday.AddDate(0, 0, 1)).
|
|
|
+ Where("active_time BETWEEN ? AND ?", estrus.FirstTime, activeTime.Add(-2*time.Hour)).
|
|
|
+ Select("1").
|
|
|
+ Limit(1).
|
|
|
+ Scan(&exists).Error; err != nil {
|
|
|
+ zaplog.Error("UpdateEstrusIsPeak", zap.Any("exists", err))
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if exists {
|
|
|
+ if err := e.DB.Model(estrus).
|
|
|
+ Update("is_peak", pasturePb.IsShow_No).Error; err != nil {
|
|
|
+ zaplog.Error("UpdateEstrusIsPeak", zap.Any("v", estrus), zap.Any("err", err))
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-// FindCowEstrusFirstTime 查找牛只昨天是否有发情数据
|
|
|
-func (e *Entry) FindCowEstrusFirstTime(pastureId, cowId int64, xToday time.Time) *EstrusStartData {
|
|
|
+// FindCowEstrusFirstTime1 查找牛只昨天是否有发情数据
|
|
|
+func (e *Entry) FindCowEstrusFirstTime1(pastureId, cowId int64, xToday time.Time) *EstrusStartData {
|
|
|
firstTimeEventEstrus := &EstrusStartData{}
|
|
|
if err := e.DB.Model(new(model.NeckRingEstrus)).
|
|
|
Select("cow_id,MIN(STR_TO_DATE(first_time, '%Y-%m-%d %H:%i:%s')) as first_time").
|