estrus_warning.go 9.4 KB

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