cow_indicators.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package crontab
  2. import (
  3. "kpt-pasture/model"
  4. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  5. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  6. "go.uber.org/zap"
  7. )
  8. // FindPastureAllCow 查询所有牧场牛只总数
  9. func (e *Entry) FindPastureAllCow() map[int64]int32 {
  10. pastureList := e.FindPastureList()
  11. res := make(map[int64]int32)
  12. for _, pasture := range pastureList {
  13. var count int64
  14. if err := e.DB.Model(&model.Cow{}).
  15. Where("pasture_id = ?", pasture.Id).
  16. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  17. Count(&count).Error; err != nil {
  18. zaplog.Error("FindAllCow", zap.Any("pasture_id", pasture.Id), zap.Any("err", err))
  19. }
  20. res[pasture.Id] = int32(count)
  21. }
  22. return res
  23. }
  24. func (e *Entry) UpdatePastureIndicators(pastureId int64, date, kind, value string) {
  25. indicatorsData := &model.IndicatorsData{
  26. PastureId: pastureId,
  27. Date: date,
  28. Kind: kind,
  29. }
  30. res := e.DB.Model(indicatorsData).
  31. Where(indicatorsData).
  32. FirstOrCreate(indicatorsData)
  33. if res.Error != nil {
  34. zaplog.Error("UpdatePastureIndicators", zap.Any("err", res.Error))
  35. return
  36. }
  37. if res.RowsAffected == 0 {
  38. indicatorsData.Value = value
  39. if err := e.DB.Save(indicatorsData).Error; err != nil {
  40. zaplog.Error("UpdatePastureIndicators", zap.Any("err", err))
  41. }
  42. }
  43. }