event_check.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package backend
  2. import (
  3. "context"
  4. "kpt-pasture/model"
  5. "go.uber.org/zap"
  6. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. "gitee.com/xuyiping_admin/pkg/xerr"
  9. )
  10. // EventCheckBatchModel 批量事件
  11. type EventCheckBatchModel struct {
  12. CowList []*model.Cow
  13. FrozenSemen *model.FrozenSemen
  14. CurrentUser *model.SystemUser
  15. OperationUser *model.SystemUser
  16. }
  17. // PregnantCheckBatchModel 批量孕检
  18. type PregnantCheckBatchModel struct {
  19. EventPregnancyCheck *model.EventPregnantCheck
  20. Cow *model.Cow
  21. OperationUser *model.SystemUser
  22. PregnantCheckAt int32 // 孕检日期
  23. PregnantCheckResult pasturePb.PregnantCheckResult_Kind // 孕检结果
  24. PregnantCheckMethod pasturePb.PregnantCheckMethod_Kind // 孕检方式
  25. Remarks string
  26. CurrentUser *model.SystemUser
  27. LastMating *model.EventMating
  28. }
  29. // MatingTimes 更新配次
  30. type MatingTimes struct {
  31. Mt int32
  32. CowId int64
  33. EventMatingId int64
  34. }
  35. func (s *StoreEntry) MatingCreateCheck(ctx context.Context, req *pasturePb.EventMating) (*EventCheckBatchModel, error) {
  36. if len(req.CowIds) <= 0 {
  37. return nil, xerr.Custom("请选择相关牛只")
  38. }
  39. currentUser, err := s.GetCurrentSystemUser(ctx)
  40. if err != nil {
  41. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  42. }
  43. cowIds := make([]int64, 0)
  44. for _, v := range req.CowIds {
  45. cowIds = append(cowIds, int64(v))
  46. }
  47. if len(cowIds) > 20 {
  48. return nil, xerr.Custom("最多只能选择50只牛只")
  49. }
  50. cowList, err := s.GetCowInfoByCowIds(ctx, currentUser.PastureId, cowIds)
  51. if err != nil {
  52. return nil, xerr.WithStack(err)
  53. }
  54. operationUser, err := s.GetSystemUserById(ctx, currentUser.PastureId, int64(req.OperationId))
  55. if err != nil {
  56. return nil, xerr.WithStack(err)
  57. }
  58. frozenSemen := &model.FrozenSemen{}
  59. if err = s.DB.Where("bull_id = ?", req.FrozenSemenNumber).
  60. First(frozenSemen).Error; err != nil {
  61. return nil, xerr.Custom("未找到冻精信息")
  62. }
  63. if frozenSemen.Quantity < req.FrozenSemenCount {
  64. return nil, xerr.Custom("冻精数量不足")
  65. }
  66. for _, cow := range cowList {
  67. if cow.Sex != pasturePb.Genders_Female {
  68. return nil, xerr.Customf("牛只: %d,不是母牛", cow.Id)
  69. }
  70. if int64(req.MatingAt) < cow.LastMatingAt {
  71. return nil, xerr.Customf("牛只: %d,最近一次配种时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastMatingAt, req.MatingAt)
  72. }
  73. if int64(req.MatingAt) < cow.LastPregnantCheckAt {
  74. return nil, xerr.Customf("牛只: %d,最近一次孕检时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastPregnantCheckAt, req.MatingAt)
  75. }
  76. if int64(req.MatingAt) < cow.LastAbortionAt {
  77. return nil, xerr.Customf("牛只: %d,最近一次流产时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastAbortionAt, req.MatingAt)
  78. }
  79. if int64(req.MatingAt) < cow.BirthAt {
  80. return nil, xerr.Customf("牛只: %d,出生时间: %d,不能小于本次配种时间: %d", cow.Id, cow.BirthAt, req.MatingAt)
  81. }
  82. if cow.BreedStatus == pasturePb.BreedStatus_Pregnant || cow.BreedStatus == pasturePb.BreedStatus_No_Mating {
  83. return nil, xerr.Customf("牛只: %d,当前状态为: %s,不能进行配种", cow.Id, cow.BreedStatus.String())
  84. }
  85. }
  86. return &EventCheckBatchModel{
  87. CowList: cowList,
  88. FrozenSemen: frozenSemen,
  89. CurrentUser: currentUser,
  90. OperationUser: operationUser,
  91. }, nil
  92. }
  93. func (s *StoreEntry) PregnantCheckDataCheck(ctx context.Context, req *pasturePb.EventPregnantCheckBatch) ([]*PregnantCheckBatchModel, error) {
  94. if len(req.Item) <= 0 {
  95. return nil, xerr.Custom("请选择相关牛只")
  96. }
  97. currentUser, err := s.GetCurrentSystemUser(ctx)
  98. if err != nil {
  99. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  100. }
  101. pregnantCheckBatchModelList := make([]*PregnantCheckBatchModel, 0)
  102. for _, pregnantCheckData := range req.Item {
  103. operationUser, err := s.GetSystemUserById(ctx, currentUser.PastureId, int64(pregnantCheckData.OperationId))
  104. if err != nil {
  105. zaplog.Error("PregnantCheckDataCheck", zap.Any("id", pregnantCheckData.OperationId), zap.Any("error", err.Error()))
  106. return nil, xerr.Customf("获取操作人员信息失败")
  107. }
  108. pregnantCheckData.OperationName = operationUser.Name
  109. cow, err := s.GetCowInfoByCowId(ctx, currentUser.PastureId, int64(pregnantCheckData.CowId))
  110. if err != nil {
  111. return nil, xerr.WithStack(err)
  112. }
  113. // 过滤掉没有配种状态的牛只
  114. if cow.BreedStatus != pasturePb.BreedStatus_Breeding {
  115. return nil, xerr.Customf("牛只: %d,当前状态为: %s,不能进行孕检", cow.Id, cow.BreedStatus.String())
  116. }
  117. itemEventPregnantCheck, ok, err := s.FindEventPregnantCheckIsExIstByCowId(ctx, cow)
  118. if err != nil {
  119. zaplog.Error("GetEventPregnantCheckIsExIstByCowId", zap.Any("err", err), zap.Any("cow", cow))
  120. return nil, xerr.Customf("该牛只孕检事件数据异常, cowId: %d", pregnantCheckData.CowId)
  121. }
  122. if itemEventPregnantCheck.Id <= 0 || !ok {
  123. return nil, xerr.Customf("该牛只孕检事件数据异常, cowId: %d", pregnantCheckData.CowId)
  124. }
  125. lastEventMating, ok, err := s.FindLastEventMatingByCowId(ctx, currentUser.PastureId, cow.Id)
  126. if err != nil || !ok {
  127. return nil, xerr.Customf("该牛只配种事件数据异常, cowId: %d", pregnantCheckData.CowId)
  128. }
  129. pregnantCheckBatchModelList = append(pregnantCheckBatchModelList, &PregnantCheckBatchModel{
  130. Cow: cow,
  131. OperationUser: operationUser,
  132. PregnantCheckAt: pregnantCheckData.PregnantCheckAt,
  133. PregnantCheckMethod: pregnantCheckData.PregnantCheckMethod,
  134. PregnantCheckResult: pregnantCheckData.PregnantCheckResult,
  135. Remarks: pregnantCheckData.Remarks,
  136. EventPregnancyCheck: itemEventPregnantCheck,
  137. CurrentUser: currentUser,
  138. LastMating: lastEventMating,
  139. })
  140. }
  141. return pregnantCheckBatchModelList, nil
  142. }