|
@@ -88,8 +88,10 @@ func (s *StoreEntry) List(ctx context.Context, req *pasturePb.SearchEventRequest
|
|
|
Code: http.StatusOK,
|
|
|
Msg: "ok",
|
|
|
Data: &pasturePb.SearchCowData{
|
|
|
- List: model.CowSlice(cowList).ToPB(penMap, cowTypeMap, breedStatusMap,
|
|
|
- cowKindMap, cowSourceMap, admissionStatusMap, healthStatusMap),
|
|
|
+ List: model.CowSlice(cowList).ToPB(
|
|
|
+ penMap, cowTypeMap, breedStatusMap, cowKindMap,
|
|
|
+ cowSourceMap, admissionStatusMap, healthStatusMap,
|
|
|
+ ),
|
|
|
Total: int32(count),
|
|
|
PageSize: pagination.PageSize,
|
|
|
Page: pagination.Page,
|
|
@@ -227,3 +229,29 @@ func (s *StoreEntry) BehaviorCurve(ctx context.Context, req *pasturePb.CowBehavi
|
|
|
Data: data,
|
|
|
}, nil
|
|
|
}
|
|
|
+
|
|
|
+func (s *StoreEntry) CowGrowthCurve(ctx context.Context, req *pasturePb.CowGrowthCurveRequest) (*pasturePb.CowGrowthCurveResponse, error) {
|
|
|
+ currentUser, err := s.GetCurrentSystemUser(ctx)
|
|
|
+ if err != nil {
|
|
|
+ return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
|
|
|
+ }
|
|
|
+ cowInfo, err := s.GetCowInfoByCowId(ctx, currentUser.PastureId, int64(req.CowId))
|
|
|
+ if err != nil {
|
|
|
+ return nil, xerr.Customf("错误的牛只信息: %d", req.CowId)
|
|
|
+ }
|
|
|
+
|
|
|
+ weightList := make([]*model.EventWeight, 0)
|
|
|
+ if err = s.DB.Table(new(model.EventWeight).TableName()).
|
|
|
+ Where("cow_id = ?", cowInfo.Id).
|
|
|
+ Where("pasture_id = ?", currentUser.PastureId).
|
|
|
+ Order("weight_at").
|
|
|
+ Find(&weightList).Error; err != nil {
|
|
|
+ return nil, xerr.WithStack(err)
|
|
|
+ }
|
|
|
+
|
|
|
+ return &pasturePb.CowGrowthCurveResponse{
|
|
|
+ Code: http.StatusOK,
|
|
|
+ Msg: "ok",
|
|
|
+ Data: model.EventWeightSlice(weightList).ToPB(),
|
|
|
+ }, nil
|
|
|
+}
|