warning_handle.go 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. package crontab
  2. import (
  3. "fmt"
  4. "kpt-pasture/model"
  5. "sort"
  6. "time"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  9. "gitee.com/xuyiping_admin/pkg/xerr"
  10. "go.uber.org/zap"
  11. )
  12. func (e *Entry) UpdateNeckRingWarning() (err error) {
  13. pastureList := e.FindPastureList()
  14. if pastureList == nil || len(pastureList) == 0 {
  15. return nil
  16. }
  17. for _, pasture := range pastureList {
  18. // 先删除历史数据
  19. if err = e.DB.Model(new(model.NeckRingEstrusWarning)).
  20. Where("pasture_id = ?", pasture.Id).
  21. Delete(new(model.NeckRingEstrusWarning)).Error; err != nil {
  22. zaplog.Error("UpdateNeckRingWarning", zap.Any("delete", err), zap.Any("pasture", pasture))
  23. }
  24. if err = e.NeckRingWarning(pasture.Id); err != nil {
  25. zaplog.Error("EntryCrontab", zap.Any("NeckRingWarning", err), zap.Any("pasture", pasture))
  26. }
  27. zaplog.Info("UpdateNeckRingWarning-success", zap.Any("pasture", pasture.Id))
  28. }
  29. return nil
  30. }
  31. func (e *Entry) NeckRingWarning(pastureId int64) (err error) {
  32. // 计算时间范围
  33. now := time.Now()
  34. startTime := now.Add(-24 * time.Hour)
  35. neckRingEstrusList := make([]*model.NeckRingEstrus, 0)
  36. if err = e.DB.Table(fmt.Sprintf("%s as a", new(model.NeckRingEstrus).TableName())).
  37. Select("a.*").
  38. Joins("JOIN cow as b ON a.cow_id = b.id AND a.pasture_id = b.pasture_id").
  39. Where("a.pasture_id = ?", pastureId).
  40. Where("a.active_date >= ?", startTime.Format(model.LayoutTime)).
  41. Where("a.active_level >= ?", pasturePb.EstrusLevel_Low).
  42. Where("a.check_result IN (?)", []pasturePb.CheckResult_Kind{pasturePb.CheckResult_Pending, pasturePb.CheckResult_Correct}).
  43. Where("a.is_show = ?", pasturePb.IsShow_Ok).
  44. Where("a.is_peak >= ?", pasturePb.IsShow_Ok).
  45. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  46. Find(&neckRingEstrusList).Error; err != nil {
  47. return xerr.WithStack(err)
  48. }
  49. if len(neckRingEstrusList) == 0 {
  50. return nil
  51. }
  52. neckRingEstrusWarningList := e.GroupAndProcessData(neckRingEstrusList)
  53. if len(neckRingEstrusWarningList) > 0 {
  54. if err = e.DB.CreateInBatches(neckRingEstrusWarningList, 50).Error; err != nil {
  55. return xerr.WithStack(err)
  56. }
  57. } else {
  58. return nil
  59. }
  60. minId := e.getMinId(pastureId)
  61. estrusWarningList, err := e.GetCowHighChange(pastureId, minId)
  62. if err != nil {
  63. return xerr.WithStack(err)
  64. }
  65. for _, v := range estrusWarningList {
  66. neckRingEstrusWarning := &model.NeckRingEstrusWarning{}
  67. if err = e.DB.Model(new(model.NeckRingEstrusWarning)).
  68. Where("neck_ring_estrus_id = ?", v.NeckRingEstrusId).
  69. Find(neckRingEstrusWarning).Error; err != nil {
  70. zaplog.Error("UpdateNeckRingWarning", zap.Any("Find", err), zap.Any("v", v))
  71. continue
  72. }
  73. warningKind := pasturePb.Warning_Estrus
  74. if v.Nb1 <= model.MinNb1 {
  75. count := e.getCowHigh(pastureId, v.CowId, minId, v.DateTime)
  76. if count <= 0 {
  77. if err = e.DB.Model(new(model.NeckRingEstrusWarning)).
  78. Where("neck_ring_estrus_id = ?", v.NeckRingEstrusId).
  79. Where("cow_id = ?", v.CowId).
  80. Where("pasture_id = ?", pastureId).Delete(new(model.NeckRingEstrusWarning)).Error; err != nil {
  81. zaplog.Error("UpdateNeckRingWarning", zap.Any("Delete", err), zap.Any("v", v))
  82. }
  83. continue
  84. }
  85. }
  86. if err = e.DB.Model(new(model.NeckRingEstrusWarning)).
  87. Where("neck_ring_estrus_id = ?", v.NeckRingEstrusId).
  88. Updates(map[string]interface{}{
  89. "warning_kind": warningKind,
  90. "high_change": v.HighChange,
  91. }).Error; err != nil {
  92. zaplog.Error("UpdateNeckRingWarning", zap.Any("Updates", err), zap.Any("v", v))
  93. continue
  94. }
  95. }
  96. if err = e.UpdateNeckRingWarningIsPeak(pastureId, minId); err != nil {
  97. zaplog.Error("UpdateNeckRingWarning", zap.Any("UpdateNeckRingWarningIsPeak", err), zap.Any("pastureId", pastureId))
  98. }
  99. return nil
  100. }
  101. func (e *Entry) UpdateNeckRingWarningIsPeak(pastureId, minId int64) error {
  102. sqlQuery := e.DB.Table(fmt.Sprintf("%s as a", new(model.NeckActiveHabit).TableName())).
  103. Select("1").
  104. Where("a.id >= ?", minId).
  105. Where("a.cow_id = b.cow_id").
  106. Where("a.created_at > UNIX_TIMESTAMP(b.date_time)")
  107. if err := e.DB.Table(fmt.Sprintf("%s as b", new(model.NeckRingEstrusWarning).TableName())).
  108. Where("b.pasture_id = ?", pastureId).
  109. Where("EXISTS (?)", sqlQuery).Update("is_peak", pasturePb.IsShow_Ok).Error; err != nil {
  110. return xerr.WithStack(err)
  111. }
  112. return nil
  113. }
  114. func (e *Entry) GroupAndProcessData(records []*model.NeckRingEstrus) []*model.NeckRingEstrusWarning {
  115. groups := make(map[int64]*model.GroupEstrusData)
  116. // 分组处理
  117. for _, record := range records {
  118. // 从关联的Cow表获取信息(这里需要根据实际关联方式调整)
  119. // 假设已通过JOIN获取到CowID等信息
  120. // 实际实现可能需要预加载Cow信息
  121. key := record.CowId
  122. if _, exist := groups[key]; !exist {
  123. groups[key] = &model.GroupEstrusData{
  124. CowId: record.CowId,
  125. PastureId: record.PastureId,
  126. Records: make([]*model.NeckRingEstrus, 0),
  127. EarNumber: record.EarNumber,
  128. Moved: false,
  129. }
  130. }
  131. // 检查是否在移牛列表中
  132. // 假设通过CowID判断,需要根据实际关联关系调整
  133. /*if _, moved := movedCows[record.CowId]; moved {
  134. groups[key].Moved = true
  135. }*/
  136. groups[key].Records = append(groups[key].Records, record)
  137. }
  138. // 处理每个分组
  139. var neckRingEstrusWarningList []*model.NeckRingEstrusWarning
  140. for _, group := range groups {
  141. if len(group.Records) == 0 {
  142. continue
  143. }
  144. // 排序记录
  145. sort.Slice(group.Records, func(i, j int) bool {
  146. return group.Records[i].Id > group.Records[j].Id
  147. })
  148. // 计算字段
  149. latest := group.Records[0]
  150. maxId := findMaxId(group.Records)
  151. firstTime := findMaxTime(group.Records, func(r *model.NeckRingEstrus) string { return r.EstrusStartDate })
  152. dateTime := findMaxTime(group.Records, func(r *model.NeckRingEstrus) string { return r.ActiveDate })
  153. neckRingEstrusWarning := model.NewNeckRingEstrusWarning(
  154. maxId, group.PastureId, group.CowId, group.EarNumber,
  155. firstTime, dateTime, latest.LastEstrusDate,
  156. pasturePb.Warning_Estrus, latest.ActiveLevel,
  157. )
  158. neckRingEstrusWarningList = append(neckRingEstrusWarningList, neckRingEstrusWarning)
  159. }
  160. return neckRingEstrusWarningList
  161. }
  162. func (e *Entry) GetCowHighChange(pastureId, minId int64) ([]*model.EstrusWarning, error) {
  163. nowTime := time.Now().Add(-48 * time.Hour)
  164. estrusWarningList := make([]*model.EstrusWarning, 0)
  165. if err := e.DB.Table(fmt.Sprintf("%s as a", new(model.NeckActiveHabit).TableName())).
  166. Select(
  167. "GROUP_CONCAT( IF(ROUND(a.change_filter*a.filter_correct/100,0)=-99,'',ROUND(a.change_filter*a.filter_correct/100,0)) ) as high_change",
  168. "b.neck_ring_estrus_id", "b.cow_id", "b.date_time", "COUNT(a.change_filter>-99) as nb1",
  169. "COUNT(a.change_filter=-99 AND a.created_at>=(STR_TO_DATE(b.date_time,'%Y-%m-%d %H:%i:%s') -INTERVAL 48 HOUR )) as nb2").
  170. Joins("JOIN neck_ring_estrus_warning as b ON a.cow_id = b.cow_id AND a.pasture_id = b.pasture_id").
  171. Where("a.id > ?", minId).
  172. Where("a.pasture_id = ?", pastureId).
  173. Where("a.created_at > ?", nowTime.Unix()).
  174. Group("b.neck_ring_estrus_id").
  175. Having("nb1 <= ? AND nb2 >=", model.Nb1, model.Nb2).
  176. Find(&estrusWarningList).
  177. Error; err != nil {
  178. return nil, xerr.WithStack(err)
  179. }
  180. return estrusWarningList, nil
  181. }
  182. // getRecentMovedCows 辅助函数:检查是否在移牛事件
  183. func (e *Entry) getRecentMovedCows(pastureId, cowId int64) bool {
  184. var count int64
  185. startDate := time.Now().AddDate(0, 0, -2)
  186. table := &model.EventCowLog{CowId: cowId}
  187. if err := e.DB.Table(table.TableName()).
  188. Where("cow_id = ?", cowId).
  189. Where("pasture = ?", pastureId).
  190. Where("event_type = ?", pasturePb.EventType_Transfer_Ben).
  191. Where("event_at >= ?", startDate.Unix()).
  192. Count(&count).Error; err != nil {
  193. return false
  194. }
  195. if count > 0 {
  196. return true
  197. }
  198. return false
  199. }
  200. func (e *Entry) getMinId(pastureId int64) int64 {
  201. var minId int64
  202. nowTime := time.Now().AddDate(0, 0, -2).Format(model.LayoutDate2)
  203. if err := e.DB.Model(new(model.NeckActiveHabit)).
  204. Select("MIN(id) as id").
  205. Where("heat_date = ?", nowTime).
  206. Where("pasture_id = ?", pastureId).
  207. Scan(&minId).Error; err != nil {
  208. return 1
  209. }
  210. return minId
  211. }
  212. func (e *Entry) getCowHigh(pastureId, cowId, minId int64, dateTime string) int64 {
  213. dateTimeUnix, _ := time.Parse(model.LayoutTime, dateTime)
  214. dateTimeUnixStart := time.Time{}
  215. if dateTimeUnix.IsZero() {
  216. dateTimeUnixStart = time.Now().Add(-22 * time.Hour)
  217. } else {
  218. dateTimeUnixStart = dateTimeUnix.Add(-22 * time.Hour)
  219. }
  220. var count int64
  221. if err := e.DB.Model(new(model.NeckActiveHabit)).
  222. Select("COUNT(0) as count").
  223. Where("created_at BETWEEN ? AND ?", dateTimeUnixStart.Unix(), dateTimeUnix).
  224. Where("pasture_id = ?", pastureId).
  225. Where("cow_id = ?", cowId).
  226. Where("id >= ?", minId).
  227. Scan(&count).Error; err != nil {
  228. return 0
  229. }
  230. return count
  231. }
  232. // 辅助函数:计算最大时间
  233. func findMaxTime(records []*model.NeckRingEstrus, getter func(*model.NeckRingEstrus) string) string {
  234. var max time.Time
  235. for _, r := range records {
  236. t1 := getter(r)
  237. if t1 == "" {
  238. continue
  239. }
  240. t, err := time.Parse(model.LayoutTime, t1)
  241. if err != nil {
  242. continue
  243. }
  244. if t.After(max) {
  245. max = t
  246. }
  247. }
  248. return max.Format(model.LayoutTime)
  249. }
  250. func findMaxId(records []*model.NeckRingEstrus) int64 {
  251. maxId := int64(0)
  252. for _, v := range records {
  253. if v.Id > maxId {
  254. maxId = v.Id
  255. }
  256. }
  257. return maxId
  258. }