neck_ring_handle.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. package crontab
  2. import (
  3. "fmt"
  4. "kpt-pasture/model"
  5. "kpt-pasture/util"
  6. "math"
  7. "sort"
  8. "time"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  11. "gitee.com/xuyiping_admin/pkg/xerr"
  12. "go.uber.org/zap"
  13. )
  14. const (
  15. MinChangeFilter = -99
  16. MinRuminaFilter = -99
  17. MinChewFilter = -99
  18. MinChangeHigh = -99
  19. DefaultNb = 30
  20. DefaultScore = 100
  21. )
  22. var (
  23. defaultLimit = int32(1000)
  24. isDelete bool
  25. mergeIsRunning bool
  26. calculateIsRunning bool
  27. )
  28. // NeckRingOriginalMergeData 把脖环数据合并成2个小时的
  29. func (e *Entry) NeckRingOriginalMergeData() (err error) {
  30. if mergeIsRunning {
  31. return nil
  32. }
  33. newTime := time.Now()
  34. mergeIsRunning = true
  35. defer func() {
  36. mergeIsRunning = false
  37. if newTime.Day()%15 == 0 && !isDelete {
  38. // 原始数据删除15天前的
  39. e.DB.Model(new(model.NeckRingOriginal)).
  40. Where("created_at < ?", newTime.AddDate(0, 0, -15).Unix()).
  41. Delete(new(model.NeckRingOriginal))
  42. e.DB.Model(new(model.NeckRingProcess)).
  43. Where("created_at < ?", newTime.AddDate(0, 0, -15).Unix()).
  44. Delete(new(model.NeckRingProcess))
  45. // 活动数据删除6个月前的数据
  46. e.DB.Model(new(model.NeckActiveHabit)).
  47. Where("created_at < ?", newTime.AddDate(0, -6, 0).Unix()).
  48. Delete(new(model.NeckActiveHabit))
  49. isDelete = true
  50. }
  51. }()
  52. limit := e.Cfg.NeckRingLimit
  53. if limit <= 0 {
  54. limit = defaultLimit
  55. }
  56. //createdAt := newTime.Add(-1 * time.Hour)
  57. neckRingNumber := []string{
  58. "10026", "10027", "10028", "10029", "10030",
  59. "10031", "10032", "10033", "10034", "10035",
  60. "10036", "10037", "10038", "10039", "10040",
  61. "10041", "10042", "10043", "10044", "10046",
  62. "10047", "10048", "10049", "10050", "10051",
  63. "10052", "10053", "10054", "10055", "10056",
  64. }
  65. neckRingList := make([]*model.NeckRingOriginal, 0)
  66. if err = e.DB.Model(new(model.NeckRingOriginal)).
  67. Where("is_show = ?", pasturePb.IsShow_No).
  68. Where("neck_ring_number IN (?)", neckRingNumber).
  69. //Where("created_at <= ?", createdAt.Unix()).
  70. Order("active_date,frameid,neck_ring_number").
  71. Limit(int(limit)).Find(&neckRingList).Error; err != nil {
  72. return xerr.WithStack(err)
  73. }
  74. if len(neckRingList) <= 0 {
  75. return nil
  76. }
  77. // 计算合并
  78. neckActiveHabitList := e.recalculate(neckRingList)
  79. if len(neckActiveHabitList) <= 0 {
  80. return nil
  81. }
  82. for _, habit := range neckActiveHabitList {
  83. //更新脖环牛只相关信息 新数据直接插入
  84. historyNeckActiveHabit, ct := e.IsExistNeckActiveHabit(habit.NeckRingNumber, habit.HeatDate, habit.Frameid)
  85. if ct <= 0 {
  86. if err = e.DB.Create(habit).Error; err != nil {
  87. zaplog.Info("NeckRingOriginalMergeData-1",
  88. zap.Any("err", err),
  89. zap.Any("neckActiveHabit", habit),
  90. )
  91. }
  92. } else {
  93. // 重新计算
  94. newNeckActiveHabit := e.againRecalculate(historyNeckActiveHabit)
  95. if newNeckActiveHabit == nil {
  96. continue
  97. }
  98. if err = e.DB.Model(new(model.NeckActiveHabit)).
  99. Select("rumina", "intake", "inactive", "gasp", "other", "high", "active", "is_show", "record_count").
  100. Where("id = ?", historyNeckActiveHabit.Id).
  101. Updates(newNeckActiveHabit).Error; err != nil {
  102. zaplog.Error("NeckRingOriginalMergeData-3",
  103. zap.Any("err", err),
  104. zap.Any("ct", ct),
  105. zap.Any("historyNeckActiveHabit", historyNeckActiveHabit),
  106. zap.Any("newNeckActiveHabit", newNeckActiveHabit),
  107. )
  108. }
  109. }
  110. if err = e.UpdateNeckRingOriginalIsShow(habit); err != nil {
  111. zaplog.Error("NeckRingOriginalMergeData-2",
  112. zap.Any("err", err),
  113. zap.Any("neckActiveHabit", habit),
  114. )
  115. }
  116. }
  117. return nil
  118. }
  119. func (e *Entry) NeckRingCalculate() error {
  120. pastureList := e.FindPastureList()
  121. if pastureList == nil || len(pastureList) == 0 {
  122. return nil
  123. }
  124. if calculateIsRunning {
  125. return nil
  126. }
  127. defer func() {
  128. calculateIsRunning = false
  129. }()
  130. calculateIsRunning = true
  131. for _, pasture := range pastureList {
  132. if err := e.EntryUpdateActiveHabit(pasture.Id); err != nil {
  133. zaplog.Error("NeckRingCalculate", zap.Any("err", err), zap.Any("pasture", pasture))
  134. }
  135. zaplog.Info(fmt.Sprintf("NeckRingCalculate Success %d", pasture.Id))
  136. }
  137. return nil
  138. }
  139. // recalculate 合并计算
  140. func (e *Entry) recalculate(neckRingList []*model.NeckRingOriginal) []*model.NeckActiveHabit {
  141. originalMapData := make(map[string]*model.NeckRingOriginalMerge)
  142. // 合并成2个小时的
  143. for _, v := range neckRingList {
  144. xframeId := util.XFrameId(v.Frameid)
  145. mapKey := fmt.Sprintf("%s%s%s%s%d", v.NeckRingNumber, model.JoinKey, v.ActiveDate, model.JoinKey, xframeId) // 0001/2023-12-04/0 0001/2023-12-03/4
  146. if originalMapData[mapKey] == nil {
  147. originalMapData[mapKey] = new(model.NeckRingOriginalMerge)
  148. }
  149. originalMapData[mapKey].IsMageData(v, xframeId)
  150. }
  151. currTime := time.Now()
  152. res := make([]*model.NeckActiveHabit, 0)
  153. // 算平均值
  154. for k, v := range originalMapData {
  155. // 过滤掉合并后不等于6条数据
  156. if v.RecordCount > 6 {
  157. delete(originalMapData, k)
  158. continue
  159. } else if v.RecordCount < 6 {
  160. currMaxXframeId := util.FrameIdMapReverse[int32(currTime.Hour())]
  161. activeDateString := fmt.Sprintf("%s %02d:00:00", v.ActiveDate, v.XframeId*2+1)
  162. activeDate, _ := time.Parse(model.LayoutTime, activeDateString)
  163. if currMaxXframeId-v.XframeId <= 1 && currTime.Add(-1*time.Hour).Unix() < activeDate.Unix() {
  164. delete(originalMapData, k)
  165. continue
  166. }
  167. }
  168. v.SumAvg()
  169. }
  170. if len(originalMapData) <= 0 {
  171. return res
  172. }
  173. res = model.NeckRingOriginalMap(originalMapData).ForMatData()
  174. sort.Sort(model.NeckActiveHabitSlice(res))
  175. return res
  176. }
  177. func (e *Entry) againRecalculate(data *model.NeckActiveHabit) *model.NeckActiveHabit {
  178. originalList := make([]*model.NeckRingOriginal, 0)
  179. frameIds := util.FrameIds(data.Frameid)
  180. if err := e.DB.Model(new(model.NeckRingOriginal)).
  181. Where("pasture_id = ?", data.PastureId).
  182. Where("neck_ring_number = ?", data.NeckRingNumber).
  183. Where("active_date = ?", data.HeatDate).
  184. Where("frameid IN (?)", frameIds).
  185. Find(&originalList).Error; err != nil {
  186. return nil
  187. }
  188. newDataList := e.recalculate(originalList)
  189. if len(newDataList) != 1 {
  190. return nil
  191. }
  192. res := newDataList[0]
  193. res.IsShow = pasturePb.IsShow_No
  194. return res
  195. }
  196. func (e *Entry) EntryUpdateActiveHabit(pastureId int64) (err error) {
  197. // 获取这段执行数据内最大日期和最小日期
  198. xToday := &XToday{}
  199. systemConfigureList, err := e.GetSystemConfigure(pastureId)
  200. if err != nil {
  201. return xerr.WithStack(err)
  202. }
  203. for _, v := range systemConfigureList {
  204. switch v.Name {
  205. case model.MaxHabit:
  206. xToday.LastMaxHabitId = v.Value
  207. case model.High:
  208. xToday.High = int32(v.Value)
  209. case model.Rumina:
  210. xToday.Rumina = int32(v.Value)
  211. case model.XRuminaDisc:
  212. xToday.XRuminaDisc = int32(v.Value)
  213. case model.XChangeDiscount:
  214. xToday.XChangeDiscount = int32(v.Value)
  215. case model.WeeklyActive:
  216. xToday.WeeklyActive = int32(v.Value)
  217. }
  218. }
  219. currMaxHabit := &model.NeckActiveHabit{}
  220. if err = e.DB.Model(new(model.NeckActiveHabit)).
  221. Where("id > ?", xToday.LastMaxHabitId).
  222. Where("pasture_id = ?", pastureId).
  223. Where("is_show = ?", pasturePb.IsShow_No).
  224. Order("id desc").First(currMaxHabit).Error; err != nil {
  225. return xerr.WithStack(err)
  226. }
  227. if currMaxHabit.Id <= 0 || currMaxHabit.Id <= xToday.LastMaxHabitId {
  228. return nil
  229. }
  230. xToday.CurrMaxHabitId = currMaxHabit.Id
  231. defer func() {
  232. // 更新最后一次执行的id值
  233. if err == nil {
  234. e.DB.Model(new(model.NeckRingConfigure)).
  235. Where("name = ?", model.MaxHabit).
  236. Where("pasture_id = ?", pastureId).
  237. Update("value", currMaxHabit.Id)
  238. }
  239. }()
  240. var processIds []int64
  241. // 更新活动滤波
  242. processIds, err = e.FirstFilterUpdate(pastureId, xToday)
  243. if err != nil {
  244. zaplog.Error("NeckRingCalculate", zap.Any("FirstFilterUpdate", err), zap.Any("xToday", xToday))
  245. }
  246. if len(processIds) > 0 {
  247. if err = e.WeeklyUpdateActiveHabit(pastureId, processIds, xToday); err != nil {
  248. zaplog.Error("NeckRingCalculate", zap.Any("WeeklyUpdateActiveHabit", err), zap.Any("xToday", xToday))
  249. }
  250. if err = e.Before3DaysNeckActiveHabit(pastureId, processIds, xToday); err != nil {
  251. zaplog.Error("NeckRingCalculate", zap.Any("Before3DaysNeckActiveHabit", err), zap.Any("xToday", xToday))
  252. }
  253. // 二次更新滤波
  254. if err = e.SecondUpdateChangeFilter(pastureId, xToday); err != nil {
  255. zaplog.Error("NeckRingCalculate", zap.Any("SecondUpdateChangeFilter", err), zap.Any("xToday", xToday))
  256. }
  257. }
  258. // 活动量校正系数和健康评分
  259. if err = e.FilterCorrectAndScoreUpdate(pastureId, xToday); err != nil {
  260. zaplog.Error("NeckRingCalculate", zap.Any("ActivityVolumeChanges", err), zap.Any("xToday", xToday))
  261. }
  262. if err = e.DB.Model(new(model.NeckActiveHabit)).
  263. Where("id BETWEEN ? AND ?", xToday.LastMaxHabitId, xToday.CurrMaxHabitId).
  264. Where("pasture_id = ?", pastureId).
  265. Where("is_show = ?", pasturePb.IsShow_No).
  266. Where("change_filter = ?", model.InitChangeFilter).
  267. Updates(map[string]interface{}{
  268. "change_filter": model.DefaultChangeFilter,
  269. "rumina_filter": model.DefaultRuminaFilter,
  270. "chew_filter": model.DefaultChewFilter,
  271. }).Error; err != nil {
  272. zaplog.Error("EntryUpdateActiveHabit", zap.Any("change_filter", err), zap.Any("xToday", xToday))
  273. }
  274. if err = e.DB.Model(new(model.NeckActiveHabit)).
  275. Where("id BETWEEN ? AND ?", xToday.LastMaxHabitId, xToday.CurrMaxHabitId).
  276. Where("pasture_id = ?", pastureId).
  277. Where("change_filter < ?", 0).
  278. Where("filter_correct < ?", model.DefaultFilterCorrect).
  279. Updates(map[string]interface{}{
  280. "filter_correct": model.DefaultFilterCorrect,
  281. }).Error; err != nil {
  282. zaplog.Error("EntryUpdateActiveHabit", zap.Any("filter_correct", err), zap.Any("xToday", xToday))
  283. }
  284. // 插入群体校正表
  285. if err = e.UpdateChangeAdJust(pastureId, xToday); err != nil {
  286. zaplog.Error("EntryUpdateActiveHabit", zap.Any("UpdateChangeAdJust", err), zap.Any("xToday", xToday))
  287. }
  288. // 健康预警
  289. if len(processIds) > 0 {
  290. if err = e.HealthWarning(pastureId, processIds); err != nil {
  291. zaplog.Error("EntryUpdateActiveHabit", zap.Any("HealthWarning", err))
  292. }
  293. }
  294. return nil
  295. }
  296. // FirstFilterUpdate 首次更新活动滤波
  297. func (e *Entry) FirstFilterUpdate(pastureId int64, xToDay *XToday) (processIds []int64, err error) {
  298. newNeckActiveHabitList := make([]*model.NeckActiveHabit, 0)
  299. if err = e.DB.Model(new(model.NeckActiveHabit)).
  300. Where("id BETWEEN ? AND ?", xToDay.LastMaxHabitId, xToDay.CurrMaxHabitId).
  301. Where("pasture_id = ?", pastureId).
  302. Where("is_show = ?", pasturePb.IsShow_No).
  303. Where(e.DB.Where("high >= ?", xToDay.High).Or("rumina >= ?", xToDay.Rumina)).
  304. Order("heat_date,neck_ring_number,frameid").
  305. Limit(int(defaultLimit)).Find(&newNeckActiveHabitList).Error; err != nil {
  306. return nil, xerr.WithStack(err)
  307. }
  308. // 活动量滤波
  309. for _, v := range newNeckActiveHabitList {
  310. // 过滤牛只未绑定的脖环的数据
  311. cowInfo := e.GetCowInfoByNeckRingNumber(v.PastureId, v.NeckRingNumber)
  312. if cowInfo == nil || cowInfo.Id <= 0 {
  313. continue
  314. }
  315. frameId := v.Frameid
  316. heatDate := v.HeatDate
  317. if v.Frameid == 0 {
  318. frameId = 11
  319. heatDateParse, _ := time.Parse(model.LayoutDate2, heatDate)
  320. heatDate = heatDateParse.AddDate(0, 0, -1).Format(model.LayoutDate2)
  321. }
  322. firstFilterData := e.FindFirstFilter(pastureId, v.NeckRingNumber, heatDate, frameId)
  323. if v.FilterHigh > 0 {
  324. firstFilterData.FilterHigh = v.FilterHigh
  325. } else {
  326. if v.NeckRingNumber == firstFilterData.NeckRingNumber {
  327. firstFilterData.FilterHigh = int32(computeIfPositiveElse(float64(v.High), float64(firstFilterData.FilterHigh), 0.23, 0.77))
  328. } else {
  329. firstFilterData.FilterHigh = v.High
  330. }
  331. }
  332. if v.FilterRumina > 0 {
  333. firstFilterData.FilterRumina = v.FilterRumina
  334. } else {
  335. if v.NeckRingNumber == firstFilterData.NeckRingNumber {
  336. firstFilterData.FilterRumina = int32(computeIfPositiveElse(float64(v.Rumina), float64(firstFilterData.FilterRumina), 0.33, 0.67))
  337. } else {
  338. firstFilterData.FilterRumina = v.Rumina
  339. }
  340. }
  341. if v.FilterChew > 0 {
  342. firstFilterData.FilterChew = v.FilterChew
  343. } else {
  344. if v.NeckRingNumber == firstFilterData.NeckRingNumber {
  345. firstFilterData.FilterChew = int32(computeIfPositiveElse(float64(v.Rumina+v.Intake), float64(firstFilterData.FilterChew), 0.33, 0.67))
  346. } else {
  347. firstFilterData.FilterChew = v.Rumina + v.Intake
  348. }
  349. }
  350. processIds = append(processIds, v.Id)
  351. // 更新过滤值
  352. if err = e.DB.Model(new(model.NeckActiveHabit)).
  353. Select(
  354. "filter_high", "filter_rumina", "filter_chew", "cow_id", "lact", "calving_age",
  355. ).Where("id = ?", v.Id).
  356. Updates(map[string]interface{}{
  357. "filter_high": firstFilterData.FilterHigh,
  358. "filter_rumina": firstFilterData.FilterRumina,
  359. "filter_chew": firstFilterData.FilterChew,
  360. "cow_id": cowInfo.Id,
  361. "lact": cowInfo.Lact,
  362. "calving_age": cowInfo.CalvingAge,
  363. }).Error; err != nil {
  364. zaplog.Error("FirstFilterUpdate",
  365. zap.Any("error", err),
  366. zap.Any("firstFilterData", firstFilterData),
  367. zap.Any("NeckActiveHabit", v),
  368. zap.Any("cowInfo", cowInfo),
  369. zap.Any("xToday", xToDay),
  370. )
  371. }
  372. }
  373. return processIds, nil
  374. }
  375. func (e *Entry) WeeklyUpdateActiveHabit(pastureId int64, processIds []int64, xToDay *XToday) (err error) {
  376. newNeckActiveHabitList := make([]*model.NeckActiveHabit, 0)
  377. if err = e.DB.Model(new(model.NeckActiveHabit)).
  378. Where("id IN (?)", processIds).
  379. Order("heat_date,neck_ring_number,frameid").
  380. Find(&newNeckActiveHabitList).Error; err != nil {
  381. return xerr.WithStack(err)
  382. }
  383. for _, v := range newNeckActiveHabitList {
  384. // 前七天的
  385. weekHabitData := e.FindWeekHabitData(pastureId, v.NeckRingNumber, v.HeatDate, v.Frameid, xToDay)
  386. highDiff := v.FilterHigh - weekHabitData.WeekHighHabit
  387. denominator := float64(v.WeekHigh)*0.6 + float64(weekHabitData.WeekHighHabit)*0.2 + float64(xToDay.WeeklyActive)*0.2
  388. if highDiff > 0 {
  389. v.ChangeHigh = int32(math.Round((float64(highDiff) / denominator) * 100))
  390. } else {
  391. v.ChangeHigh = int32(math.Round(float64(highDiff) / denominator * 100))
  392. }
  393. if weekHabitData.WeekRuminaHabit != 0 {
  394. v.ChangeRumina = int32(math.Round(float64(v.FilterRumina-weekHabitData.WeekRuminaHabit) / float64(weekHabitData.WeekRuminaHabit) * 100))
  395. } else {
  396. v.ChangeRumina = 0
  397. }
  398. if weekHabitData.WeekChewHabit != 0 {
  399. v.ChangeChew = int32(math.Round(float64(v.FilterChew-weekHabitData.WeekChewHabit) / float64(weekHabitData.WeekChewHabit) * 100))
  400. } else {
  401. v.ChangeChew = 0
  402. }
  403. sumHabitData := e.FindSumHabitData(pastureId, v.NeckRingNumber, v.HeatDate, v.Frameid, xToDay)
  404. // 更新过滤值
  405. if err = e.DB.Model(new(model.NeckActiveHabit)).
  406. Select(
  407. "week_high_habit", "week_rumina_habit", "week_chew_habit", "week_intake_habit", "week_inactive_habit",
  408. "sum_rumina", "sum_intake", "sum_inactive", "sum_active", "sum_max_high", "sum_min_high", "sum_min_chew",
  409. "change_high", "change_rumina", "change_chew", "before_three_sum_rumina", "before_three_sum_intake",
  410. ).Where("id = ?", v.Id).
  411. Updates(map[string]interface{}{
  412. "week_high_habit": weekHabitData.WeekHighHabit,
  413. "week_rumina_habit": weekHabitData.WeekRuminaHabit,
  414. "week_chew_habit": weekHabitData.WeekChewHabit,
  415. "week_intake_habit": weekHabitData.WeekIntakeHabit,
  416. "week_inactive_habit": weekHabitData.WeekIntakeHabit,
  417. "sum_rumina": sumHabitData.SumRumina,
  418. "sum_intake": sumHabitData.SumIntake,
  419. "sum_inactive": sumHabitData.SumInactive,
  420. "sum_active": sumHabitData.SumActive,
  421. "sum_max_high": sumHabitData.SumMaxHigh,
  422. "sum_min_high": sumHabitData.SumMinHigh,
  423. "sum_min_chew": sumHabitData.SumMinChew,
  424. "change_high": v.ChangeHigh,
  425. "change_rumina": v.ChangeRumina,
  426. "change_chew": v.ChangeChew,
  427. }).Error; err != nil {
  428. zaplog.Error("WeeklyUpdateActiveHabit",
  429. zap.Error(err),
  430. zap.Any("NeckActiveHabit", v),
  431. zap.Any("pastureId", pastureId),
  432. )
  433. }
  434. }
  435. return err
  436. }
  437. func (e *Entry) Before3DaysNeckActiveHabit(pastureId int64, processIds []int64, xToDay *XToday) (err error) {
  438. newNeckActiveHabitList := make([]*model.NeckActiveHabit, 0)
  439. if err = e.DB.Model(new(model.NeckActiveHabit)).
  440. Where("id IN (?)", processIds).
  441. Order("heat_date,neck_ring_number,frameid").
  442. Find(&newNeckActiveHabitList).Error; err != nil {
  443. return xerr.WithStack(err)
  444. }
  445. for _, v := range newNeckActiveHabitList {
  446. before3DaysNeckActiveHabit := e.FindBefore3DaysNeckActiveHabit(pastureId, v.NeckRingNumber, v.HeatDate, v.Frameid)
  447. // 更新过滤值
  448. if err = e.DB.Model(new(model.NeckActiveHabit)).
  449. Select("before_three_sum_rumina", "before_three_sum_intake").
  450. Where("id = ?", v.Id).
  451. Updates(map[string]interface{}{
  452. "before_three_sum_rumina": before3DaysNeckActiveHabit.SumRumina,
  453. "before_three_sum_intake": before3DaysNeckActiveHabit.SumIntake,
  454. }).Error; err != nil {
  455. zaplog.Error("Before3DaysNeckActiveHabit",
  456. zap.Error(err),
  457. zap.Any("NeckActiveHabit", v),
  458. zap.Any("pastureId", pastureId),
  459. )
  460. }
  461. }
  462. return nil
  463. }
  464. // SecondUpdateChangeFilter 第二次更新变化趋势滤波
  465. func (e *Entry) SecondUpdateChangeFilter(pastureId int64, xToday *XToday) (err error) {
  466. newChangeFilterList := make([]*ChangeFilterData, 0)
  467. if err = e.DB.Model(new(model.NeckActiveHabit)).
  468. Select("id", "neck_ring_number", "change_high", "change_filter", "rumina_filter", "change_rumina",
  469. "chew_filter", "change_chew", "heat_date", "frameid", "IF(lact = 0, 0.8, 1) as xlc_dis_count").
  470. Where("heat_date >= ?", time.Now().AddDate(0, 0, -2).Format(model.LayoutDate2)).
  471. Where("pasture_id = ?", pastureId).
  472. Where("change_filter = ?", model.InitChangeFilter).
  473. Where("change_high > ?", MinChangeHigh).
  474. Order("neck_ring_number,heat_date,frameid").
  475. Find(&newChangeFilterList).Error; err != nil {
  476. return xerr.WithStack(err)
  477. }
  478. for _, v := range newChangeFilterList {
  479. secondFilterData := &SecondFilterData{}
  480. frameId := v.FrameId
  481. heatDate := v.HeatDate
  482. if v.FrameId == 0 {
  483. frameId = 11
  484. heatDateParse, _ := time.Parse(model.LayoutDate2, heatDate)
  485. heatDate = heatDateParse.AddDate(0, 0, -1).Format(model.LayoutDate2)
  486. }
  487. if err = e.DB.Model(new(model.NeckActiveHabit)).
  488. Select("neck_ring_number", "filter_high", "filter_rumina", "filter_chew").
  489. Where("neck_ring_number = ?", v.NeckRingNumber).
  490. Where("heat_date = ?", heatDate).
  491. Where("frameid = ?", frameId).
  492. First(&secondFilterData).Error; err != nil {
  493. zaplog.Error("EntryUpdateActiveHabit", zap.Any("FirstFilterUpdate", err))
  494. }
  495. if v.ChangeFilter > MinChangeFilter {
  496. secondFilterData.ChangeFilter = float64(v.ChangeFilter)
  497. } else {
  498. if v.NeckRingNumber == secondFilterData.NeckRingNumber {
  499. secondFilterData.ChangeFilter = secondFilterData.ChangeFilter*(1-(float64(xToday.XChangeDiscount)/10)*v.XlcDisCount) +
  500. math.Min(float64(v.ChangeHigh), secondFilterData.ChangeFilter+135)*(float64(xToday.XChangeDiscount)/10)*v.XlcDisCount
  501. } else {
  502. secondFilterData.ChangeFilter = 0
  503. }
  504. }
  505. if v.RuminaFilter > MinRuminaFilter {
  506. secondFilterData.RuminaFilter = float64(v.ChangeFilter)
  507. } else {
  508. if v.NeckRingNumber == secondFilterData.NeckRingNumber {
  509. discount := float64(xToday.XRuminaDisc) / 10 * v.XlcDisCount
  510. if math.Abs(float64(v.ChangeRumina)) > 60 {
  511. discount *= 0.5
  512. }
  513. secondFilterData.RuminaFilter = secondFilterData.RuminaFilter*(1-discount) + float64(v.ChangeRumina)*discount
  514. } else {
  515. secondFilterData.RuminaFilter = 0
  516. }
  517. }
  518. secondFilterData.RuminaFilter = math.Min(50, secondFilterData.RuminaFilter)
  519. if v.ChewFilter > MinChewFilter {
  520. secondFilterData.ChewFilter = float64(v.ChangeChew)
  521. } else {
  522. if v.NeckRingNumber == secondFilterData.NeckRingNumber {
  523. discount := float64(xToday.XRuminaDisc) / 10
  524. if math.Abs(float64(v.ChangeChew)) > 60 {
  525. discount *= 0.5
  526. }
  527. secondFilterData.ChewFilter = secondFilterData.ChewFilter*(1-discount) + float64(v.ChangeChew)*discount
  528. } else {
  529. secondFilterData.ChewFilter = 0
  530. }
  531. }
  532. secondFilterData.ChewFilter = math.Min(50, secondFilterData.ChewFilter)
  533. if err = e.DB.Model(new(model.NeckActiveHabit)).
  534. Select("change_filter", "rumina_filter", "chew_filter").
  535. Where("id = ?", v.Id).
  536. Updates(map[string]interface{}{
  537. "change_filter": secondFilterData.ChangeFilter,
  538. "rumina_filter": secondFilterData.RuminaFilter,
  539. "chew_filter": secondFilterData.ChewFilter,
  540. }).Error; err != nil {
  541. zaplog.Error("SecondUpdateChangeFilter-1", zap.Any("error", err), zap.Any("xToday", xToday))
  542. }
  543. }
  544. return nil
  545. }
  546. // FilterCorrectAndScoreUpdate 计算活动量变化趋势校正值(活跃度校正)和健康评分
  547. func (e *Entry) FilterCorrectAndScoreUpdate(pastureId int64, xToday *XToday) error {
  548. beginDayDate := time.Now()
  549. before7DayDate := beginDayDate.AddDate(0, 0, -7).Format(model.LayoutDate2)
  550. before1DayDate := beginDayDate.AddDate(0, 0, -1).Format(model.LayoutDate2)
  551. activityVolumeList := make([]*ActivityVolume, 0)
  552. activityVolumeMap := make(map[string]*ActivityVolume)
  553. if err := e.DB.Model(new(model.NeckActiveHabit)).
  554. Select("neck_ring_number", "AVG(IF(change_filter>=60, 60, change_filter)) as avg_filter",
  555. "ROUND(STD(IF(change_filter>=60, 60, change_filter))) as std_filter", "COUNT(1) as nb").
  556. Where("heat_date BETWEEN ? AND ?", before7DayDate, before1DayDate).
  557. Where("pasture_id = ?", pastureId).
  558. Where(e.DB.Where("high > ?", xToday.High).Or("rumina >= ?", xToday.Rumina)).
  559. Where("active_time <= ?", beginDayDate.Add(-12*time.Hour).Format(model.LayoutTime)).
  560. Where("change_filter > ?", MinChangeFilter).
  561. Having("nb > ?", DefaultNb).
  562. Group("neck_ring_number").
  563. Find(&activityVolumeList).Error; err != nil {
  564. zaplog.Error("ActivityVolumeChanges-0", zap.Any("error", err), zap.Any("xToday", xToday))
  565. }
  566. if len(activityVolumeList) > 0 {
  567. for _, v := range activityVolumeList {
  568. activityVolumeMap[v.NeckRingNumber] = v
  569. }
  570. }
  571. neckActiveHabitList := make([]*model.NeckActiveHabit, 0)
  572. if err := e.DB.Model(new(model.NeckActiveHabit)).
  573. Where("id <= ?", xToday.CurrMaxHabitId).
  574. Where("heat_date >= ?", before1DayDate).
  575. Where("pasture_id = ?", pastureId).
  576. Where(e.DB.Where("high > ?", xToday.High).Or("rumina > ?", xToday.Rumina)).
  577. Find(&neckActiveHabitList).Error; err != nil {
  578. zaplog.Error("ActivityVolumeChanges-1", zap.Any("error", err), zap.Any("xToday", xToday))
  579. return xerr.WithStack(err)
  580. }
  581. for _, v := range neckActiveHabitList {
  582. if filterCorrectMap, ok := activityVolumeMap[v.NeckRingNumber]; ok {
  583. filterCorrect := model.DefaultFilterCorrect - int(math.Floor(filterCorrectMap.AvgFilter/3+float64(filterCorrectMap.StdFilter)/2))
  584. // 活动量校正系数
  585. if err := e.DB.Model(new(model.NeckActiveHabit)).
  586. Where("id = ?", v.Id).
  587. Where("neck_ring_number = ?", v.NeckRingNumber).
  588. Update("filter_correct", filterCorrect).Error; err != nil {
  589. zaplog.Error("ActivityVolumeChanges-2", zap.Any("error", err), zap.Any("xToday", xToday))
  590. continue
  591. }
  592. }
  593. cowScore := calculateScore(v)
  594. if err := e.DB.Model(new(model.NeckActiveHabit)).
  595. Where("id = ?", v.Id).
  596. Update("score", cowScore).Error; err != nil {
  597. zaplog.Error("ActivityVolumeChanges-2", zap.Any("error", err), zap.Any("xToday", xToday))
  598. continue
  599. }
  600. }
  601. return nil
  602. }
  603. // UpdateChangeAdJust 更新群体校正数据
  604. func (e *Entry) UpdateChangeAdJust(pastureId int64, xToday *XToday) error {
  605. /*-- 插入群体校正表
  606. INSERT INTO data_bar_change(heatdate, frameid, intCurBar, intCurBarName, nb, highchange, changefilter)
  607. SELECT h.heatdate, h.frameid, c.intCurBar, c.intCurBarName, COUNT(*) nb, ROUND(AVG(h.highchange)) highchange, ROUND(AVG(h.changefilter) ) changefilter
  608. FROM h_activehabit h JOIN cow c ON h.intCowId=c.intCowId
  609. WHERE h.heatdate>=(CURDATE() -INTERVAL 1 DAY )
  610. GROUP BY h.heatdate, h.frameid, c.intCurBar
  611. ORDER BY h.heatdate, h.frameid, c.intCurBarName
  612. ON DUPLICATE KEY UPDATE nb = VALUES(nb), highchange = VALUES(highchange), changefilter = VALUES(changefilter);
  613. UPDATE h_activehabit h
  614. JOIN cow c ON h.intCowId=c.intCowId
  615. JOIN data_bar_change cg ON h.heatdate=cg.heatdate AND h.frameid=cg.frameid AND c.intCurBar=cg.intCurBar
  616. SET h.changeadjust=cg.changefilter
  617. WHERE h.id>xBeg_update_act_Id AND h.heatdate>=CURRENT_DATE() - INTERVAL 1 DAY AND ABS(cg.changefilter)>=10;
  618. */
  619. res := make([]*model.NeckRingBarChange, 0)
  620. oneDayAgo := time.Now().AddDate(0, 0, -1).Format(model.LayoutDate2)
  621. if err := e.DB.Table(fmt.Sprintf("%s as h", new(model.NeckActiveHabit).TableName())).
  622. Select("h.neck_ring_number,h.heat_date, h.frameid, c.pen_id, c.pen_name, COUNT(*) as nb, ROUND(AVG(h.change_high)) as change_high, ROUND(AVG(h.change_filter)) as change_filter").
  623. Joins("JOIN cow as c ON h.neck_ring_number = c.neck_ring_number").
  624. Where("h.pasture_id = ?", pastureId).
  625. Where("h.heat_date >= ?", oneDayAgo).
  626. Where("h.cow_id >= ?", 0).
  627. Where("h.cow_id >= ?", 0).
  628. Group("h.heat_date, h.frameid, c.pen_id").
  629. Order("h.heat_date, h.frameid, c.pen_name").
  630. Find(&res).Error; err != nil {
  631. return xerr.WithStack(err)
  632. }
  633. // todo ABS(cg.changefilter)>=10;
  634. for _, v := range res {
  635. if err := e.DB.Model(new(model.NeckActiveHabit)).
  636. Where("id > ?", xToday.LastMaxHabitId).
  637. Where("heat_date = ?", v.HeatDate).
  638. Where("frameid = ?", v.FrameId).
  639. Where("neck_ring_number = ?", v.NeckRingNumber).
  640. Update("change_adjust", v.ChangeHigh).Error; err != nil {
  641. zaplog.Error("UpdateChangeAdJust-1", zap.Any("error", err), zap.Any("xToday", xToday))
  642. }
  643. }
  644. // 更新所有的显示状态为否的记录为是
  645. if err := e.DB.Model(new(model.NeckActiveHabit)).
  646. Where("id BETWEEN ? AND ?", xToday.LastMaxHabitId, xToday.CurrMaxHabitId).
  647. Where("pasture_id = ?", pastureId).
  648. Update("is_show", pasturePb.IsShow_Ok).Error; err != nil {
  649. zaplog.Error("UpdateChangeAdJust-2", zap.Any("error", err), zap.Any("xToday", xToday))
  650. }
  651. return nil
  652. }
  653. func (e *Entry) UpdateNeckRingOriginalIsShow(habit *model.NeckActiveHabit) error {
  654. if err := e.DB.Model(new(model.NeckRingOriginal)).
  655. Where("pasture_id = ?", habit.PastureId).
  656. Where("neck_ring_number = ?", habit.NeckRingNumber).
  657. Where("active_date = ?", habit.HeatDate).
  658. Where("frameid IN (?)", util.FrameIds(habit.Frameid)).
  659. Update("is_show", pasturePb.IsShow_Ok).Error; err != nil {
  660. return xerr.WithStack(err)
  661. }
  662. return nil
  663. }
  664. // computeIfPositiveElse 辅助函数来计算过滤值
  665. func computeIfPositiveElse(newValue, prevFilterValue float64, weightPrev, weightNew float64) float64 {
  666. return math.Ceil((prevFilterValue * weightPrev) + (weightNew * newValue))
  667. }
  668. // 计算 score 的逻辑
  669. func calculateScore(habit *model.NeckActiveHabit) int {
  670. // 第一部分逻辑
  671. var part1 float64
  672. switch {
  673. case (habit.CalvingAge <= 1 && habit.Lact >= 1) ||
  674. (habit.CalvingAge >= 2 && habit.CalvingAge <= 13 && (habit.SumRumina+habit.SumIntake) == 0) ||
  675. ((habit.Lact == 0 || habit.CalvingAge >= 14) && habit.ChangeFilter == -99):
  676. part1 = -199
  677. case habit.CalvingAge >= 2 && habit.CalvingAge <= 13:
  678. part1 = math.Min((float64(habit.SumRumina+habit.SumIntake)-(100+math.Min(7, float64(habit.CalvingAge))*60))/10*2, 0)
  679. case habit.ChangeFilter > -99:
  680. part1 = math.Min(0, math.Min(getValueOrDefault(float64(habit.ChangeFilter), 0), getValueOrDefault(float64(habit.SumMinHigh), 0)))*0.2 +
  681. math.Min(0, math.Min(getValueOrDefault(float64(habit.ChangeFilter), 0), getValueOrDefault(float64(habit.SumMinChew), 0)))*0.2 +
  682. getRuminaSumIntakeSumScore(float64(habit.SumRumina+habit.SumIntake)) + getAdditionalScore(habit)
  683. default:
  684. part1 = -299
  685. }
  686. // 第二部分逻辑
  687. var part2 float64
  688. switch {
  689. case habit.FirmwareVersion%100 >= 52:
  690. part2 = 1
  691. case habit.FirmwareVersion%100 >= 30 && habit.FirmwareVersion%100 <= 43:
  692. part2 = 0.8
  693. default:
  694. part2 = 0.6
  695. }
  696. // 最终 score
  697. return DefaultScore + int(math.Floor(part1*part2))
  698. }
  699. // 获取值或默认值
  700. func getValueOrDefault(value, defaultValue float64) float64 {
  701. if value > -99 {
  702. return value
  703. }
  704. return defaultValue
  705. }
  706. // 计算累计反刍得分
  707. func getRuminaSumIntakeSumScore(sum float64) float64 {
  708. switch {
  709. case sum < 80:
  710. return -30
  711. case sum < 180:
  712. return -20
  713. case sum < 280:
  714. return -10
  715. default:
  716. return 0
  717. }
  718. }
  719. // 计算额外得分
  720. func getAdditionalScore(habit *model.NeckActiveHabit) float64 {
  721. var score float64
  722. if (habit.SumRumina+habit.SumIntake < 280 || habit.SumMinHigh+habit.SumMinChew < -50) && habit.SumMaxHigh > 50 {
  723. score += 10
  724. }
  725. if habit.ChangeFilter < -30 && habit.ChangeFilter <= habit.SumMinHigh && habit.ChewFilter < -30 && habit.ChewFilter <= habit.SumMinChew {
  726. score -= 5
  727. }
  728. return score
  729. }