cow_indicators.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package crontab
  2. import (
  3. "errors"
  4. "kpt-pasture/model"
  5. "gorm.io/gorm"
  6. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  7. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  8. "go.uber.org/zap"
  9. )
  10. // FindPastureAllCow 查询所有牧场牛只总数
  11. func (e *Entry) FindPastureAllCow() map[int64]int32 {
  12. pastureList := e.FindPastureList()
  13. res := make(map[int64]int32)
  14. for _, pasture := range pastureList {
  15. var count int64
  16. if err := e.DB.Model(&model.Cow{}).
  17. Where("pasture_id = ?", pasture.Id).
  18. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  19. Count(&count).Error; err != nil {
  20. zaplog.Error("FindAllCow", zap.Any("pasture_id", pasture.Id), zap.Any("err", err))
  21. }
  22. res[pasture.Id] = int32(count)
  23. }
  24. return res
  25. }
  26. func (e *Entry) UpdatePastureIndicators(pastureId int64, indicatorsDetails *model.IndicatorsDetails, date, value string) {
  27. where := &model.IndicatorsData{
  28. PastureId: pastureId,
  29. Date: date,
  30. Kind: indicatorsDetails.Kind,
  31. }
  32. data := &model.IndicatorsData{
  33. PastureId: pastureId,
  34. CategoryType: indicatorsDetails.CategoryType,
  35. CategoryName: indicatorsDetails.CategoryName,
  36. Date: date,
  37. Kind: indicatorsDetails.Kind,
  38. Value: value,
  39. }
  40. var existData model.IndicatorsData
  41. if err := e.DB.Model(new(model.IndicatorsData)).
  42. Where(where).First(&existData).Error; err != nil {
  43. if errors.Is(err, gorm.ErrRecordNotFound) {
  44. if err = e.DB.Model(new(model.IndicatorsData)).Create(data).Error; err != nil {
  45. zaplog.Error("UpdatePastureIndicators", zap.Any("Create", err))
  46. }
  47. } else {
  48. zaplog.Error("UpdatePastureIndicators", zap.Any("Find", err))
  49. return
  50. }
  51. }
  52. if err := e.DB.Model(new(model.IndicatorsData)).
  53. Where("id = ?", existData.Id).
  54. Update("value", value).Error; err != nil {
  55. zaplog.Error("UpdatePastureIndicators", zap.Any("Update", err))
  56. }
  57. }