sql.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. package crontab
  2. import (
  3. "errors"
  4. "fmt"
  5. "kpt-pasture/model"
  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. "gorm.io/gorm"
  12. )
  13. func (e *Entry) FindPastureList() []*model.AppPastureList {
  14. res := make([]*model.AppPastureList, 0)
  15. if err := e.DB.Model(new(model.AppPastureList)).
  16. Where("is_show = ?", pasturePb.IsShow_Ok).
  17. Find(&res).Error; err != nil {
  18. zaplog.Error("FindPastureList error", zap.Any("err", err))
  19. return res
  20. }
  21. return res
  22. }
  23. func (e *Entry) GetCowById(cowId int64) (*model.Cow, error) {
  24. cowInfo := &model.Cow{}
  25. if err := e.DB.Model(new(model.Cow)).
  26. Where("id = ?", cowId).
  27. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  28. First(cowInfo).Error; err != nil {
  29. return nil, err
  30. }
  31. return cowInfo, nil
  32. }
  33. func (e *Entry) GetPenMapList(pastureId int64) (map[int32]*model.Pen, error) {
  34. penList := make([]*model.Pen, 0)
  35. if err := e.DB.Model(new(model.Pen)).
  36. Where("pasture_id = ?", pastureId).
  37. Where("is_delete = ?", pasturePb.IsShow_Ok).
  38. Find(&penList).Error; err != nil {
  39. return nil, xerr.WithStack(err)
  40. }
  41. penMap := make(map[int32]*model.Pen)
  42. for _, v := range penList {
  43. penMap[v.Id] = v
  44. }
  45. return penMap, nil
  46. }
  47. // GetBeforeThreeDaysCowEstrus 获取值得时间之前三天内最大发情记录
  48. func (e *Entry) GetBeforeThreeDaysCowEstrus(cowId int64, activeTime string) *model.NeckRingEstrus {
  49. neckRingEstrus := &model.NeckRingEstrus{}
  50. if err := e.DB.Model(new(model.NeckRingEstrus)).
  51. Select("MAX(max_high) as max_high,cow_id,MAX(day_high) as day_high").
  52. Select("MAX(IF(check_result=1,3,check_result)) AS check_result").
  53. Where("cow_id = ?", cowId).
  54. Where("active_time >= ?", activeTime).
  55. First(neckRingEstrus).Error; err != nil {
  56. return neckRingEstrus
  57. }
  58. return neckRingEstrus
  59. }
  60. // GetTwoEstrus 判断最近50天内是否存在发情记录(发情等级>=2),如果18~25天@xadjust21,如果36~50天@xadjust42
  61. func (e *Entry) GetTwoEstrus(pastureId, cowId int64, startActiveTime, endActiveTime string) *CowEstrus {
  62. newCowEstrus := &CowEstrus{}
  63. if err := e.DB.Model(new(model.NeckRingEstrus)).
  64. Select("cow_id,MAX(active_time) as active_date").
  65. Where("cow_id = ?", cowId).
  66. Where("pasture_id = ?", pastureId).
  67. Where("active_time BETWEEN ? AND ?", startActiveTime, endActiveTime).
  68. Where("active_level >= ?", pasturePb.EstrusLevel_Middle).
  69. First(newCowEstrus).Error; err != nil {
  70. return newCowEstrus
  71. }
  72. return newCowEstrus
  73. }
  74. func (e *Entry) FindCowInfoByCowId(cowId int64) *model.Cow {
  75. res := &model.Cow{}
  76. if err := e.DB.Model(new(model.Cow)).
  77. Where("id = ?", cowId).
  78. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  79. First(res).Error; err != nil {
  80. zaplog.Error("FindCowInfoByCowId", zap.Any("cowId", cowId), zap.Any("err", err))
  81. return nil
  82. }
  83. return res
  84. }
  85. func (e *Entry) IsExistEventEstrus(pastureId, cowId int64) *model.EventEstrus {
  86. res := &model.EventEstrus{}
  87. if err := e.DB.Model(new(model.EventEstrus)).
  88. Where("cow_id = ?", cowId).
  89. Where("pasture_id = ?", pastureId).
  90. Where("expose_estrus_type = ?", pasturePb.ExposeEstrusType_Neck_Ring).
  91. Where("is_show = ?", pasturePb.IsShow_Ok).
  92. Order("id DESC").
  93. First(res).Error; err != nil {
  94. return nil
  95. }
  96. return res
  97. }
  98. func (e *Entry) IsExistNeckActiveHabit(pastureId int64, neckRingNumber, heatDate string, frameId int32) (*model.NeckActiveHabit, int64) {
  99. count := int64(0)
  100. neckActiveHabit := &model.NeckActiveHabit{}
  101. if err := e.DB.Model(new(model.NeckActiveHabit)).
  102. Where("pasture_id = ?", pastureId).
  103. Where("neck_ring_number = ?", neckRingNumber).
  104. Where("heat_date = ?", heatDate).
  105. Where("frameid = ?", frameId).
  106. Count(&count).First(neckActiveHabit).Error; err != nil {
  107. return nil, 0
  108. }
  109. return neckActiveHabit, count
  110. }
  111. func (e *Entry) FindAppPastureReceiver() map[string]int64 {
  112. appPastureReceiverList := make([]*model.AppPastureReceiver, 0)
  113. if err := e.DB.Model(new(model.AppPastureReceiver)).
  114. Find(&appPastureReceiverList).Error; err != nil {
  115. zaplog.Error("FindAppPastureReceiver", zap.Any("err", err))
  116. }
  117. receiverMap := make(map[string]int64)
  118. for _, v := range appPastureReceiverList {
  119. receiverMap[v.ReceiverNumber] = v.PastureId
  120. }
  121. return receiverMap
  122. }
  123. func (e *Entry) GetSystemNeckRingConfigure(pastureId int64) ([]*model.NeckRingConfigure, error) {
  124. res := make([]*model.NeckRingConfigure, 0)
  125. if err := e.DB.Model(new(model.NeckRingConfigure)).
  126. Where("pasture_id = ?", pastureId).
  127. Where("is_show = ?", pasturePb.IsShow_Ok).
  128. Find(&res).Error; err != nil {
  129. return nil, xerr.WithStack(err)
  130. }
  131. return res, nil
  132. }
  133. func (e *Entry) GetCowInfoByNeckRingNumber(pastureId int64, neckRingNumber string) *model.Cow {
  134. res := &model.Cow{}
  135. if err := e.DB.Model(new(model.Cow)).
  136. Where("pasture_id = ?", pastureId).
  137. Where("neck_ring_number = ?", neckRingNumber).
  138. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  139. First(res).Error; err != nil {
  140. return nil
  141. }
  142. return res
  143. }
  144. // GetMinIdByHeatDate 获取最小的id
  145. func (e *Entry) GetMinIdByHeatDate(heatDate string, defaultId int64) (int64, error) {
  146. xMinId := struct {
  147. Id int64
  148. }{}
  149. if err := e.DB.Model(new(model.NeckActiveHabit)).
  150. Select("MIN(id) as id").
  151. Where("heat_date = ?", heatDate).
  152. First(&xMinId).Error; err != nil {
  153. if errors.Is(err, gorm.ErrRecordNotFound) {
  154. xMinId.Id = defaultId
  155. } else {
  156. return 0, xerr.WithStack(err)
  157. }
  158. }
  159. return xMinId.Id, nil
  160. }
  161. func (e *Entry) FindFirstFilter(pastureId int64, neckRingNumber, heatDate string, frameId int32) *FirstFilterData {
  162. firstFilterData := &FirstFilterData{}
  163. if err := e.DB.Model(new(model.NeckActiveHabit)).
  164. Select("neck_ring_number", "filter_high", "filter_rumina", "filter_chew").
  165. Where("neck_ring_number = ?", neckRingNumber).
  166. Where("heat_date = ?", heatDate).
  167. Where("frameid = ?", frameId).
  168. Where("pasture_id = ?", pastureId).
  169. First(firstFilterData).Error; err != nil {
  170. zaplog.Error("FirstFilterUpdate",
  171. zap.Any("err", err),
  172. zap.Any("NeckRingNumber", neckRingNumber),
  173. zap.Any("heatDate", heatDate),
  174. zap.Any("frameId", frameId),
  175. )
  176. }
  177. return firstFilterData
  178. }
  179. func (e *Entry) FindWeekHabitData(pastureId int64, neckRingNumber, heatDate string, frameid int32, xToday *XToday) *WeekHabit {
  180. beginDayDate, _ := time.Parse(model.LayoutDate2, heatDate)
  181. before7DayDate := beginDayDate.AddDate(0, 0, -7).Format(model.LayoutDate2)
  182. before1DayDate := beginDayDate.AddDate(0, 0, -1).Format(model.LayoutDate2)
  183. weekHabitData := &WeekHabit{}
  184. if err := e.DB.Model(new(model.NeckActiveHabit)).
  185. Select(
  186. "neck_ring_number",
  187. "IF(COUNT(1)>=3, ROUND((SUM(filter_high) -MIN(filter_high) -MAX(filter_high))/ABS(COUNT(1) -2),0), -1) as week_high_habit",
  188. "IF(COUNT(1)>=3, ROUND((SUM(filter_rumina) -MIN(filter_rumina) -MAX(filter_rumina))/ABS(COUNT(1) -2),0), -1) as week_rumina_habit",
  189. "IF(COUNT(1)>=3, ROUND((SUM(filter_chew) -MIN(filter_chew) -MAX(filter_chew))/ABS(COUNT(1) -2),0), -1) as week_chew_habit",
  190. "ROUND(AVG(intake),0) as week_intake_habit",
  191. "ROUND(AVG(inactive),0) as week_inactive_habit",
  192. ).Where("pasture_id = ?", pastureId).
  193. Where("heat_date BETWEEN ? AND ?", before7DayDate, before1DayDate).
  194. Where("neck_ring_number = ? ", neckRingNumber).
  195. Where("frameid = ?", frameid).
  196. Where(e.DB.Where("high > ?", xToday.High).Or("rumina >= ?", xToday.Rumina)).
  197. Group("neck_ring_number").
  198. First(weekHabitData).Error; err != nil {
  199. zaplog.Error("WeeklyActiveAvgUpdate-1",
  200. zap.Any("error", err),
  201. zap.Any("neckRingNumber", neckRingNumber),
  202. zap.Any("frameId", frameid),
  203. zap.Any("heatDate", heatDate),
  204. zap.Any("xToday", xToday),
  205. )
  206. }
  207. return weekHabitData
  208. }
  209. func (e *Entry) FindSumHabitData(pastureId int64, neckRingNumber, heatDate string, frameid int32, xToday *XToday) *SumHabit {
  210. beginDayDate, _ := time.Parse(model.LayoutDate2, heatDate)
  211. before1DayDate := beginDayDate.AddDate(0, 0, -1).Format(model.LayoutDate2)
  212. activeTime := fmt.Sprintf("%s %02d:00:00", heatDate, frameid*2+1)
  213. activeStartTimeParse, _ := time.Parse(model.LayoutTime, activeTime)
  214. activeStartTime := activeStartTimeParse.Add(-23 * time.Hour).Format(model.LayoutTime)
  215. // 累计24小时数值
  216. sumHabitData := &SumHabit{}
  217. if err := e.DB.Model(new(model.NeckActiveHabit)).
  218. Select(
  219. "neck_ring_number",
  220. "IF(COUNT(1)>6, ROUND(AVG(filter_rumina)*12,0), 0) as sum_rumina",
  221. "IF(COUNT(1)>6, ROUND(AVG(intake)*12,0), 0) as sum_intake",
  222. "IF(COUNT(1)>6, ROUND(AVG(inactive)*12,0), 0) as sum_inactive",
  223. "IF(COUNT(1)>6, ROUND(AVG(active)*12,0), 0) as sum_active",
  224. "MAX(change_filter) as sum_max_high",
  225. fmt.Sprintf("MIN(IF(change_filter > %d, change_filter, %d)) as sum_min_high", model.DefaultChangeFilter, model.InitChangeFilter),
  226. fmt.Sprintf("MIN( CASE WHEN filter_chew > %d THEN filter_chew WHEN filter_rumina >= %d THEN filter_rumina ELSE 0 END) as sum_min_chew", model.DefaultChangeFilter, model.DefaultRuminaFilter),
  227. ).
  228. Where("pasture_id = ?", pastureId).
  229. Where("heat_date BETWEEN ? AND ?", before1DayDate, heatDate).
  230. Where("active_time BETWEEN ? AND ?", activeStartTime, activeTime).
  231. Where(e.DB.Where("high > ?", xToday.High).Or("rumina >= ?", xToday.Rumina)).
  232. Where("neck_ring_number = ?", neckRingNumber).
  233. Group("neck_ring_number").First(sumHabitData).Debug().Error; err != nil {
  234. zaplog.Error("WeeklyActiveAvgUpdate-2",
  235. zap.Any("error", err),
  236. zap.Any("neckRingNumber", neckRingNumber),
  237. zap.Any("frameId", frameid),
  238. zap.Any("heatDate", heatDate),
  239. zap.Any("xToday", xToday),
  240. )
  241. }
  242. return sumHabitData
  243. }
  244. func (e *Entry) FindBefore3DaysNeckActiveHabit(pastureId int64, neckRingNumber, heatDate string, frameid int32) *model.NeckActiveHabit {
  245. before3DaysNeckActiveHabit := &model.NeckActiveHabit{}
  246. beginDayDate, _ := time.Parse(model.LayoutDate2, heatDate)
  247. before3DayDate := beginDayDate.AddDate(0, 0, -3).Format(model.LayoutDate2)
  248. if err := e.DB.Model(new(model.NeckActiveHabit)).
  249. Select("sum_rumina", "sum_intake").
  250. Where("pasture_id = ?", pastureId).
  251. Where("neck_ring_number = ?", neckRingNumber).
  252. Where("heat_date = ?", before3DayDate).
  253. Where("frameid = ? ", frameid).
  254. First(before3DaysNeckActiveHabit).Error; err != nil {
  255. zaplog.Error("WeeklyActiveAvgUpdate-3",
  256. zap.Any("error", err),
  257. zap.Any("neckRingNumber", neckRingNumber),
  258. zap.Any("frameId", frameid),
  259. zap.Any("heatDate", heatDate),
  260. )
  261. }
  262. return before3DaysNeckActiveHabit
  263. }
  264. // FindNeckRingEstrusByFirstTimeEmpty 查询firstTime为空的数据
  265. func (e *Entry) FindNeckRingEstrusByFirstTimeEmpty(pastureId int64) []*model.NeckRingEstrus {
  266. neckRingEstrusList := make([]*model.NeckRingEstrus, 0)
  267. if err := e.DB.Model(new(model.NeckRingEstrus)).
  268. Where("first_time = ?", "").
  269. Where("is_show = ?", pasturePb.IsShow_Ok).
  270. Where("pasture_id = ?", pastureId).
  271. Find(&neckRingEstrusList).Error; err != nil {
  272. zaplog.Error("FindNeckRingEstrusFirstTime", zap.Any("err", err))
  273. }
  274. return neckRingEstrusList
  275. }