event_check.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. UserModel *model.UserModel
  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. UserModel *model.UserModel
  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) EnterCheck(ctx context.Context, req *pasturePb.EventEnterRequest) error {
  36. var count int64
  37. if err := s.DB.Model(new(model.Cow)).Where("ear_number = ?", req.EarNumber).Count(&count).Error; err != nil {
  38. return xerr.WithStack(err)
  39. }
  40. if count > 0 {
  41. return xerr.Custom("该牛只已存在")
  42. }
  43. return nil
  44. }
  45. func (s *StoreEntry) MatingCreateCheck(ctx context.Context, req *pasturePb.EventMating) (*EventCheckBatchModel, error) {
  46. if len(req.CowIds) <= 0 {
  47. return nil, xerr.Custom("请选择相关牛只")
  48. }
  49. userModel, err := s.GetUserModel(ctx)
  50. if err != nil {
  51. return nil, xerr.WithStack(err)
  52. }
  53. cowIds := make([]int64, 0)
  54. for _, v := range req.CowIds {
  55. cowIds = append(cowIds, int64(v))
  56. }
  57. if len(cowIds) > 20 {
  58. return nil, xerr.Custom("最多只能选择50只牛只")
  59. }
  60. cowList, err := s.GetCowInfoByCowIds(ctx, userModel.AppPasture.Id, cowIds)
  61. if err != nil {
  62. return nil, xerr.WithStack(err)
  63. }
  64. operationUser, err := s.GetSystemUserById(ctx, int64(req.OperationId))
  65. if err != nil {
  66. return nil, xerr.WithStack(err)
  67. }
  68. frozenSemen := &model.FrozenSemen{}
  69. if err = s.DB.Where("bull_id = ?", req.FrozenSemenNumber).
  70. First(frozenSemen).Error; err != nil {
  71. return nil, xerr.Custom("未找到冻精信息")
  72. }
  73. if frozenSemen.Quantity < req.FrozenSemenCount {
  74. return nil, xerr.Custom("冻精数量不足")
  75. }
  76. for _, cow := range cowList {
  77. if cow.Sex != pasturePb.Genders_Female {
  78. return nil, xerr.Customf("牛只: %d,不是母牛", cow.Id)
  79. }
  80. if int64(req.MatingAt) < cow.LastMatingAt {
  81. return nil, xerr.Customf("牛只: %d,最近一次配种时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastMatingAt, req.MatingAt)
  82. }
  83. if int64(req.MatingAt) < cow.LastPregnantCheckAt {
  84. return nil, xerr.Customf("牛只: %d,最近一次孕检时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastPregnantCheckAt, req.MatingAt)
  85. }
  86. if int64(req.MatingAt) < cow.LastAbortionAt {
  87. return nil, xerr.Customf("牛只: %d,最近一次流产时间: %d,不能小于本次配种时间: %d", cow.Id, cow.LastAbortionAt, req.MatingAt)
  88. }
  89. if int64(req.MatingAt) < cow.BirthAt {
  90. return nil, xerr.Customf("牛只: %d,出生时间: %d,不能小于本次配种时间: %d", cow.Id, cow.BirthAt, req.MatingAt)
  91. }
  92. if cow.BreedStatus == pasturePb.BreedStatus_Pregnant || cow.BreedStatus == pasturePb.BreedStatus_No_Mating {
  93. return nil, xerr.Customf("牛只: %d,当前状态为: %s,不能进行配种", cow.Id, cow.BreedStatus.String())
  94. }
  95. }
  96. return &EventCheckBatchModel{
  97. CowList: cowList,
  98. FrozenSemen: frozenSemen,
  99. UserModel: userModel,
  100. OperationUser: operationUser,
  101. }, nil
  102. }
  103. func (s *StoreEntry) PregnantCheckDataCheck(ctx context.Context, req *pasturePb.EventPregnantCheckBatch) ([]*PregnantCheckBatchModel, error) {
  104. if len(req.Item) <= 0 {
  105. return nil, xerr.Custom("请选择相关牛只")
  106. }
  107. userModel, err := s.GetUserModel(ctx)
  108. if err != nil {
  109. return nil, xerr.WithStack(err)
  110. }
  111. pregnantCheckBatchModelList := make([]*PregnantCheckBatchModel, 0)
  112. for _, pregnantCheckData := range req.Item {
  113. operationUser, err := s.GetSystemUserById(ctx, int64(pregnantCheckData.OperationId))
  114. if err != nil {
  115. zaplog.Error("PregnantCheckDataCheck", zap.Any("id", pregnantCheckData.OperationId), zap.Any("error", err.Error()))
  116. return nil, xerr.Customf("获取操作人员信息失败")
  117. }
  118. pregnantCheckData.OperationName = operationUser.Name
  119. cow, err := s.GetCowInfoByCowId(ctx, userModel.AppPasture.Id, int64(pregnantCheckData.CowId))
  120. if err != nil {
  121. return nil, xerr.WithStack(err)
  122. }
  123. // 过滤掉没有配种状态的牛只
  124. if cow.BreedStatus != pasturePb.BreedStatus_Breeding {
  125. return nil, xerr.Customf("牛只: %d 未参加配种,不能进行孕检", cow.Id)
  126. }
  127. itemEventPregnantCheck, ok, err := s.FindEventPregnantCheckIsExIstByCowId(ctx, cow)
  128. if err != nil {
  129. zaplog.Error("GetEventPregnantCheckIsExIstByCowId", zap.Any("err", err), zap.Any("cow", cow))
  130. return nil, xerr.Customf("该牛只孕检事件数据异常, cowId: %d", pregnantCheckData.CowId)
  131. }
  132. if itemEventPregnantCheck.Id <= 0 || !ok {
  133. return nil, xerr.Customf("该牛只孕检事件数据异常, cowId: %d", pregnantCheckData.CowId)
  134. }
  135. lastEventMating, ok, err := s.FindLastEventMatingByCowId(ctx, userModel.AppPasture.Id, cow.Id)
  136. if err != nil || !ok {
  137. return nil, xerr.Customf("该牛只配种事件数据异常, cowId: %d", pregnantCheckData.CowId)
  138. }
  139. pregnantCheckBatchModelList = append(pregnantCheckBatchModelList, &PregnantCheckBatchModel{
  140. Cow: cow,
  141. OperationUser: operationUser,
  142. PregnantCheckAt: pregnantCheckData.PregnantCheckAt,
  143. PregnantCheckMethod: pregnantCheckData.PregnantCheckMethod,
  144. PregnantCheckResult: pregnantCheckData.PregnantCheckResult,
  145. Remarks: pregnantCheckData.Remarks,
  146. EventPregnancyCheck: itemEventPregnantCheck,
  147. UserModel: userModel,
  148. LastMating: lastEventMating,
  149. })
  150. }
  151. return pregnantCheckBatchModelList, nil
  152. }