dashboard.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package backend
  2. import (
  3. "context"
  4. "kpt-pasture/model"
  5. "net/http"
  6. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  7. "go.uber.org/zap"
  8. "gitee.com/xuyiping_admin/pkg/xerr"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. )
  11. func (s *StoreEntry) Bar(ctx context.Context) (*pasturePb.BarCowStructResponse, error) {
  12. barCowStructList := make([]*model.BarCowStruct, 0)
  13. var count int32 = 0
  14. if err := s.DB.Model(new(model.Cow)).
  15. Select("COUNT(*) AS number ,cow_type").
  16. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  17. Group("cow_type").
  18. Find(&barCowStructList).Error; err != nil {
  19. return nil, xerr.WithStack(err)
  20. }
  21. cowTypeMap := s.CowTypeMap()
  22. for _, v := range barCowStructList {
  23. count += v.Number
  24. }
  25. return &pasturePb.BarCowStructResponse{
  26. Code: http.StatusOK,
  27. Msg: "ok",
  28. Data: &pasturePb.BarCowStructData{
  29. List: model.BarCowStructSlice(barCowStructList).ToPB(cowTypeMap, count),
  30. Total: 38563,
  31. },
  32. }, nil
  33. }
  34. func (s *StoreEntry) NeckRingWarning(ctx context.Context) (*pasturePb.IndexNeckRingResponse, error) {
  35. userModel, err := s.GetUserModel(ctx)
  36. if err != nil {
  37. return nil, xerr.WithStack(err)
  38. }
  39. estrusWarningCowList := make([]*model.EventEstrus, 0)
  40. estrusWarningLevelItems := make(map[int32]int32)
  41. if err = s.DB.Model(new(model.EventEstrus)).
  42. Where("pasture_id = ?", userModel.AppPasture.Id).
  43. Where("is_show = ?", pasturePb.IsShow_Ok).
  44. Group("cow_id").Find(&estrusWarningCowList).Error; err != nil {
  45. zaplog.Error("NeckRingWarning", zap.Any("estrusWarningNumber", err))
  46. }
  47. for _, v := range estrusWarningCowList {
  48. estrusWarningLevelItems[int32(v.Level)] += estrusWarningLevelItems[int32(v.Level)]
  49. }
  50. healthWarningNumber := int64(0)
  51. if err = s.DB.Model(new(model.NeckRingHealthWarning)).
  52. Where("pasture_id = ?", userModel.AppPasture.Id).
  53. Where("is_show = ?", pasturePb.IsShow_Ok).
  54. Group("cow_id").
  55. Count(&healthWarningNumber).Error; err != nil {
  56. zaplog.Error("NeckRingWarning", zap.Any("estrusWarningNumber", err))
  57. }
  58. return &pasturePb.IndexNeckRingResponse{
  59. Code: http.StatusOK,
  60. Msg: "ok",
  61. Data: &pasturePb.NeckRingData{
  62. EstrusWarningNumber: int32(len(estrusWarningCowList)),
  63. HealthWarningNumber: int32(healthWarningNumber),
  64. AbortionWarningNumber: 0,
  65. StressWarningNumber: 0,
  66. EstrusWarningLevelItems: estrusWarningLevelItems,
  67. },
  68. }, nil
  69. }