|
@@ -152,7 +152,7 @@ func (s *StoreEntry) ForbiddenMatingBatch(ctx context.Context, req *pasturePb.Ev
|
|
|
// 更新牛只信息
|
|
|
item.Cow.ForbiddenMatingUpdate(item.ForbiddenMatingAt)
|
|
|
if err = tx.Model(new(model.Cow)).
|
|
|
- Select("is_forbidden_mating", "last_forbidden_mating_at").
|
|
|
+ Select("is_forbidden_mating", "last_forbidden_mating_at", "breed_status").
|
|
|
Updates(item.Cow).Error; err != nil {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|
|
@@ -255,7 +255,7 @@ func (s *StoreEntry) UnForbiddenMating(ctx context.Context, req *pasturePb.Event
|
|
|
// 牛只解配更新
|
|
|
cowInfo.UnForbiddenMatingUpdate()
|
|
|
if err = tx.Model(new(model.Cow)).
|
|
|
- Select("is_forbidden_mating", "last_forbidden_mating_at").
|
|
|
+ Select("is_forbidden_mating", "last_forbidden_mating_at", "breed_status").
|
|
|
Updates(cowInfo).Error; err != nil {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|