sql.go 11 KB

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