work_cron.go 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package crontab
  2. import (
  3. "encoding/json"
  4. "kpt-pasture/model"
  5. "time"
  6. "gorm.io/gorm"
  7. "gitee.com/xuyiping_admin/pkg/xerr"
  8. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  9. "go.uber.org/zap"
  10. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  11. )
  12. // GenerateCalendarBySameTimePlan 生成同期计划的牛只
  13. func (e *Entry) GenerateCalendarBySameTimePlan(cowList []*model.Cow, sameTime *model.SameTime) (err error) {
  14. if len(cowList) <= 0 {
  15. return nil
  16. }
  17. newCowList := make([]*model.Cow, 0)
  18. for _, cow := range cowList {
  19. if ok := e.IsExistSameTimeCow(cow, sameTime); ok {
  20. continue
  21. }
  22. newCowList = append(newCowList, cow)
  23. }
  24. if len(newCowList) <= 0 || len(sameTime.CollateNodes) <= 0 {
  25. return nil
  26. }
  27. newSameTimeCowDetailList := make([]*model.EventCowSameTime, 0)
  28. newEventMatingList := make([]*model.EventMating, 0)
  29. collateNodes := make([]*pasturePb.CollateNode, 0)
  30. var _ = json.Unmarshal([]byte(sameTime.CollateNodes), &collateNodes)
  31. nowTime := time.Now()
  32. for i, collateNode := range collateNodes {
  33. showDay := nowTime
  34. if i > 0 {
  35. showDay = nowTime.Add(time.Hour * 24 * time.Duration(collateNode.NextNodeDay))
  36. }
  37. calendarType := pasturePb.CalendarType_PG
  38. histCount := int64(0)
  39. if collateNode.SameTimeType == pasturePb.SameTimeType_TAI {
  40. calendarType = pasturePb.CalendarType_Mating
  41. histCount = e.GetTowardTaiCowSum(sameTime.PastureId)
  42. newEventMatingList = append(newEventMatingList, model.NewEventMatingList(sameTime.PastureId, newCowList, showDay.Unix(), pasturePb.ExposeEstrusType_Same_Time)...)
  43. } else {
  44. if collateNode.SameTimeType == pasturePb.SameTimeType_RnGH {
  45. calendarType = pasturePb.CalendarType_RnGH
  46. }
  47. histCount = e.GetTowardSameTimeCowSum(sameTime, collateNode.SameTimeType)
  48. newEventCowSameTimeList := model.NewEventCowSameTimeList(sameTime.PastureId, newCowList, sameTime, showDay.Unix(), collateNode.SameTimeType)
  49. newSameTimeCowDetailList = append(newSameTimeCowDetailList, newEventCowSameTimeList...)
  50. }
  51. allCount := int32(len(newCowList)) + int32(histCount)
  52. e.CreatedCalendar(sameTime.PastureId, calendarType, showDay.Format(model.LayoutDate2), allCount)
  53. }
  54. if err = e.DB.Transaction(func(tx *gorm.DB) error {
  55. // 创建牛只同期详情表
  56. if len(newSameTimeCowDetailList) > 0 {
  57. if err = tx.Create(newSameTimeCowDetailList).Error; err != nil {
  58. return xerr.WithStack(err)
  59. }
  60. }
  61. // 创建牛只配种表
  62. if len(newEventMatingList) > 0 {
  63. if err = tx.Create(newEventMatingList).Error; err != nil {
  64. return xerr.WithStack(err)
  65. }
  66. }
  67. return nil
  68. }); err != nil {
  69. return xerr.WithStack(err)
  70. }
  71. return nil
  72. }
  73. // GetTowardSameTimeCowSum 获取历史未打激素牛只总数量
  74. func (e *Entry) GetTowardSameTimeCowSum(sameTime *model.SameTime, sameTimeType pasturePb.SameTimeType_Kind) int64 {
  75. res := int64(0)
  76. if err := e.DB.Model(&model.EventCowSameTime{}).
  77. Where("status = ?", pasturePb.IsShow_No).
  78. Where("pasture_id = ?", sameTime.PastureId).
  79. Where("same_time_id = ?", sameTime.Id).
  80. Where("same_time_type = ?", sameTimeType).
  81. Count(&res).Error; err != nil {
  82. zaplog.Error("GetTowardSameTimeCowSum", zap.Any("err", err))
  83. }
  84. return res
  85. }
  86. // GetTowardTaiCowSum 获取历史未配种牛只总数量
  87. func (e *Entry) GetTowardTaiCowSum(pastureId int64) int64 {
  88. res := int64(0)
  89. if err := e.DB.Model(&model.EventMating{}).
  90. Where("pasture_id = ?", pastureId).
  91. Where("status = ?", pasturePb.IsShow_No).
  92. Count(&res).Error; err != nil {
  93. zaplog.Error("GetTowardTaiCowSum", zap.Any("err", err))
  94. }
  95. return res
  96. }