neck_ring_handle.go 28 KB

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