event_breed_more.go 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. package backend
  2. import (
  3. "context"
  4. "encoding/json"
  5. "fmt"
  6. "kpt-pasture/model"
  7. "net/http"
  8. "strings"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. "gitee.com/xuyiping_admin/pkg/xerr"
  11. "gorm.io/gorm"
  12. )
  13. func (s *StoreEntry) PregnantCheckList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PregnantCheckEventResponse, error) {
  14. pregnantCheckList := make([]*model.EventPregnantCheck, 0)
  15. var count int64 = 0
  16. pref := s.DB.Table(new(model.EventPregnantCheck).TableName())
  17. if len(req.CowId) > 0 {
  18. cowIds := strings.Split(req.CowId, ",")
  19. pref.Where("cow_id IN ?", cowIds)
  20. }
  21. if err := pref.Order("id desc").
  22. Count(&count).Limit(int(pagination.PageSize)).
  23. Offset(int(pagination.PageOffset)).
  24. Find(&pregnantCheckList).Error; err != nil {
  25. return nil, xerr.WithStack(err)
  26. }
  27. pregnantCheckResultMap := s.PregnantCheckResultMap()
  28. pregnantCheckMethodMap := s.PregnantCheckMethodMap()
  29. return &pasturePb.PregnantCheckEventResponse{
  30. Code: http.StatusOK,
  31. Message: "ok",
  32. Data: &pasturePb.SearchPregnantCheckData{
  33. List: model.EventPregnantCheckSlice(pregnantCheckList).ToPB(pregnantCheckResultMap, pregnantCheckMethodMap),
  34. Total: int32(count),
  35. PageSize: pagination.PageSize,
  36. Page: pagination.Page,
  37. },
  38. }, nil
  39. }
  40. func (s *StoreEntry) PregnantCheckCreateBatch(ctx context.Context, req *pasturePb.EventPregnantCheckBatch) (err error) {
  41. pregnantCheckBatchModelList, err := s.PregnantCheckDataCheck(ctx, req)
  42. if err != nil {
  43. return xerr.WithStack(err)
  44. }
  45. currentUser, err := s.GetCurrentSystemUser(ctx)
  46. if err != nil {
  47. return xerr.Customf("获取当前用户失败: %s", err.Error())
  48. }
  49. cowIds := make([]int64, 0)
  50. // 更新孕检牛只
  51. newPregnantCheckBatchModelList := make([]*PregnantCheckBatchModel, 0)
  52. for _, item := range pregnantCheckBatchModelList {
  53. newPregnantCheckBatchModelList = append(newPregnantCheckBatchModelList, item)
  54. cowIds = append(cowIds, item.Cow.Id)
  55. }
  56. defer func() {
  57. if err == nil {
  58. // 提交事件日志
  59. for _, cowId := range cowIds {
  60. cow, _ := s.GetCowInfoByCowId(ctx, cowId)
  61. cowLogs := s.SubmitEventLog(ctx, cow, pasturePb.EventType_Pregnancy_Check, pasturePb.ExposeEstrusType_Invalid, req)
  62. s.DB.Table(cowLogs.TableName()).Create(cowLogs)
  63. }
  64. }
  65. }()
  66. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  67. for _, item := range newPregnantCheckBatchModelList {
  68. breedStatus := pasturePb.BreedStatus_Pregnant
  69. isPregnant := pasturePb.IsShow_Ok
  70. if item.PregnantCheckResult == pasturePb.PregnantCheckResult_UnPregnant {
  71. breedStatus = pasturePb.BreedStatus_Empty
  72. isPregnant = pasturePb.IsShow_No
  73. }
  74. // 更新上一次配种结果数据,如何是复检无胎则更新为流产
  75. if item.EventPregnancyCheck.PregnantCheckName == model.PregnantCheckForSecond {
  76. breedStatus = pasturePb.BreedStatus_Abort
  77. }
  78. item.Cow.EventPregnantCheckUpdate(breedStatus, int64(item.PregnantCheckAt), isPregnant)
  79. // 更新牛只基本信息
  80. if err = tx.Model(&model.Cow{}).
  81. Select("breed_status,last_pregnant_check_at,is_pregnant").
  82. Where("cow_id = ?", item.Cow.Id).
  83. Updates(item.Cow).Error; err != nil {
  84. return xerr.WithStack(err)
  85. }
  86. if err = tx.Model(new(model.EventMating)).
  87. Where("id = (?)", fmt.Sprintf(`
  88. SELECT id FROM event_mating where cow_id = %d AND status = %d ORDER BY id DESC LIMIT 1
  89. `, item.Cow.Id, pasturePb.IsShow_Ok)).
  90. Updates(map[string]interface{}{
  91. "mating_result": breedStatus,
  92. "mating_result_at": item.PregnantCheckAt,
  93. }).Error; err != nil {
  94. return xerr.WithStack(err)
  95. }
  96. // 更新事件表
  97. item.EventPregnancyCheck.EventUpdate(int64(item.PregnantCheckAt), item.PregnantCheckResult, item.PregnantCheckMethod, item.OperationUser, currentUser, item.Remarks)
  98. // 更新孕检事件表
  99. if err = tx.Model(new(model.EventPregnantCheck)).
  100. Select("reality_day,pregnant_check_result,pregnant_check_method,operation_id,operation_name,message_id,message_name,remarks,status").
  101. Where("id = ?", item.EventPregnancyCheck.Id).
  102. Updates(item.EventPregnancyCheck).Error; err != nil {
  103. return xerr.WithStack(err)
  104. }
  105. }
  106. return nil
  107. }); err != nil {
  108. return xerr.WithStack(err)
  109. }
  110. return nil
  111. }
  112. func (s *StoreEntry) AbortionCreate(ctx context.Context, req *pasturePb.EventAbortionRequest) error {
  113. cow, err := s.GetCowInfoByCowId(ctx, int64(req.CowId))
  114. if err != nil {
  115. return xerr.WithStack(err)
  116. }
  117. systemUser, err := s.GetSystemUserById(ctx, int64(req.OperationId))
  118. if err != nil {
  119. return xerr.WithStack(err)
  120. }
  121. req.OperationName = systemUser.Name
  122. abortionReasonsMap := s.AbortionReasonsMap()
  123. newEventAbortion := model.NewEventAbortion(cow, req, abortionReasonsMap)
  124. lastCowMating := &model.EventMating{}
  125. if err = s.DB.Model(new(model.EventMating)).Where("cow_id = ?", cow.Id).
  126. Where("mating_result = ?", pasturePb.MatingResult_Pregnant).
  127. Order("id desc").First(lastCowMating).Error; err != nil {
  128. return xerr.WithStack(err)
  129. }
  130. // 更新最近一次配种结果为流产
  131. lastCowMating.EventAbortionUpdate(int64(req.AbortionAt))
  132. // 更新流产数据
  133. cow.EventAbortionUpdate(int64(req.AbortionAt))
  134. defer func() {
  135. if err != nil {
  136. cowLogs := s.SubmitEventLog(ctx, cow, pasturePb.EventType_Abort, pasturePb.ExposeEstrusType_Invalid, req)
  137. s.DB.Table(cowLogs.TableName()).Create(cowLogs)
  138. }
  139. }()
  140. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  141. // 创建牛只流产事件数据
  142. if err = tx.Create(newEventAbortion).Error; err != nil {
  143. return xerr.WithStack(err)
  144. }
  145. // 更新牛只状态
  146. if err = tx.Model(new(model.Cow)).
  147. Select("is_pregnant,last_abortion_at,breed_status").
  148. Where("id = ?", req.CowId).
  149. Updates(cow).Error; err != nil {
  150. return xerr.WithStack(err)
  151. }
  152. // 更新最近一次配种结果为流产
  153. if err = tx.Model(new(model.EventMating)).
  154. Select("mating_result,mating_result_at").
  155. Where("id = ?", lastCowMating.Id).
  156. Updates(lastCowMating).Error; err != nil {
  157. }
  158. return nil
  159. }); err != nil {
  160. return xerr.WithStack(err)
  161. }
  162. return nil
  163. }
  164. func (s *StoreEntry) AbortionCreateBatch(ctx context.Context, req *pasturePb.EventAbortionBatch) error {
  165. if len(req.Item) <= 0 {
  166. return xerr.WithStack(xerr.New("流产数据不能为空"))
  167. }
  168. errors := make(map[int32]error)
  169. for _, v := range req.Item {
  170. if err := s.AbortionCreate(ctx, v); err != nil {
  171. errors[v.CowId] = err
  172. }
  173. }
  174. if len(errors) > 0 {
  175. b, _ := json.Marshal(errors)
  176. return xerr.WithStack(xerr.Customf("部分流产数据创建失败: %s", string(b)))
  177. }
  178. return nil
  179. }
  180. func (s *StoreEntry) AbortionList(
  181. ctx context.Context,
  182. req *pasturePb.SearchEventRequest,
  183. pagination *pasturePb.PaginationModel,
  184. ) (*pasturePb.EventAbortionResponse, error) {
  185. abortionList := make([]*model.EventAbortion, 0)
  186. var count int64 = 0
  187. pref := s.DB.Model(new(model.EventAbortion))
  188. if len(req.CowId) > 0 {
  189. cowIds := strings.Split(req.CowId, ",")
  190. pref.Where("cow_id IN ?", cowIds)
  191. }
  192. if err := pref.Order("id desc").
  193. Count(&count).Limit(int(pagination.PageSize)).
  194. Offset(int(pagination.PageOffset)).
  195. Find(&abortionList).Error; err != nil {
  196. return nil, xerr.WithStack(err)
  197. }
  198. return &pasturePb.EventAbortionResponse{
  199. Code: http.StatusOK,
  200. Message: "ok",
  201. Data: &pasturePb.EventAbortionData{
  202. List: model.AbortionSlice(abortionList).ToPB(),
  203. Total: int32(count),
  204. PageSize: pagination.PageSize,
  205. Page: pagination.Page,
  206. },
  207. }, nil
  208. }