cow.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package backend
  2. import (
  3. "context"
  4. "kpt-pasture/model"
  5. "net/http"
  6. "strings"
  7. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  8. "go.uber.org/zap"
  9. "gitee.com/xuyiping_admin/pkg/xerr"
  10. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  11. )
  12. func (s *StoreEntry) List(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchCowListResponse, error) {
  13. currentUser, err := s.GetCurrentSystemUser(ctx)
  14. if err != nil {
  15. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  16. }
  17. cowList := make([]*model.Cow, 0)
  18. var count int64 = 0
  19. pref := s.DB.Model(new(model.Cow)).
  20. Where("pasture_id = ?", currentUser.PastureId)
  21. if len(req.CowId) > 0 {
  22. cowIds := strings.Split(req.CowId, ",")
  23. pref.Where("id IN ?", cowIds)
  24. }
  25. if req.Id > 0 {
  26. pref.Where("id = ?", req.Id)
  27. }
  28. if req.PenId > 0 {
  29. pref.Where("pen_id = ?", req.PenId)
  30. }
  31. if req.CowType > 0 {
  32. pref.Where("cow_type = ?", req.CowType)
  33. }
  34. if req.BreedStatus > 0 {
  35. pref.Where("breed_status = ?", req.BreedStatus)
  36. }
  37. if req.CowKind > 0 {
  38. pref.Where("cow_kind = ?", req.CowKind)
  39. }
  40. if req.Sex > 0 {
  41. pref.Where("sex = ?", req.Sex)
  42. }
  43. if req.Lact > 0 {
  44. pref.Where("lact = ?", req.Lact)
  45. }
  46. if req.CowSource > 0 {
  47. pref.Where("source_id = ?", req.CowSource)
  48. }
  49. if req.EarNumber != "" {
  50. pref.Where("ear_number = ?", req.EarNumber)
  51. }
  52. if err = pref.Order("id desc").
  53. Count(&count).
  54. Limit(int(pagination.PageSize)).
  55. Offset(int(pagination.PageOffset)).
  56. Find(&cowList).Error; err != nil {
  57. return nil, xerr.WithStack(err)
  58. }
  59. penMap := s.PenMap(ctx, currentUser.PastureId)
  60. cowTypeMap := s.CowTypeMap()
  61. breedStatusMap := s.CowBreedStatusMap()
  62. cowKindMap := s.CowKindMap()
  63. cowSourceMap := s.CowSourceMap()
  64. admissionStatusMap := s.AdmissionStatusMap()
  65. healthStatusMap := s.HealthStatusMap()
  66. return &pasturePb.SearchCowListResponse{
  67. Code: http.StatusOK,
  68. Message: "ok",
  69. Data: &pasturePb.SearchCowData{
  70. List: model.CowSlice(cowList).ToPB(penMap, cowTypeMap, breedStatusMap,
  71. cowKindMap, cowSourceMap, admissionStatusMap, healthStatusMap),
  72. Total: int32(count),
  73. PageSize: pagination.PageSize,
  74. Page: pagination.Page,
  75. },
  76. }, nil
  77. }
  78. func (s *StoreEntry) EventList(ctx context.Context, req *pasturePb.SearchCowEventListRequest, pagination *pasturePb.PaginationModel) (*pasturePb.CowEventListResponse, error) {
  79. currentUser, err := s.GetCurrentSystemUser(ctx)
  80. if err != nil {
  81. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  82. }
  83. cow := &model.Cow{}
  84. if err = s.DB.Model(cow).
  85. Where("pasture_id = ?", currentUser.PastureId).
  86. Where("id = ?", req.CowId).First(cow).Error; err != nil {
  87. zaplog.Error("EventList", zap.Any("req", req), zap.Any("err", err), zap.Any("currentUser", currentUser))
  88. return nil, xerr.Customf("该牛不存在: %d", req.CowId)
  89. }
  90. eventCowLogList := make([]*model.EventCowLog, 0)
  91. eventCowLog := &model.EventCowLog{CowId: cow.Id}
  92. pref := s.DB.Table(eventCowLog.TableName()).
  93. Where("cow_id = ?", req.CowId)
  94. if req.Lact >= 0 {
  95. pref.Where("lact = ?", req.Lact)
  96. }
  97. if req.EventCategoryKind > 0 {
  98. pref.Where("event_category_id = ?", req.EventCategoryKind)
  99. }
  100. if err = pref.Order("id desc").
  101. Limit(int(pagination.PageSize)).
  102. Offset(int(pagination.PageOffset)).
  103. Find(&eventCowLogList).Error; err != nil {
  104. zaplog.Error("EventList", zap.Any("req", req), zap.Any("err", err), zap.Any("currentUser", currentUser))
  105. return nil, xerr.WithStack(err)
  106. }
  107. eventCategoryMap := s.EventCategoryMap()
  108. return &pasturePb.CowEventListResponse{
  109. Code: http.StatusOK,
  110. Message: "ok",
  111. Data: &pasturePb.CowEventData{
  112. List: model.EventCowLogSlice(eventCowLogList).ToPB(eventCategoryMap),
  113. Total: int32(len(eventCowLogList)),
  114. PageSize: pagination.PageSize,
  115. Page: pagination.Page,
  116. },
  117. }, nil
  118. }