|
@@ -339,6 +339,7 @@ func (s *StoreEntry) PregnancyCheckCowList(ctx context.Context, req *pasturePb.I
|
|
|
var count int64
|
|
|
pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventPregnantCheck).TableName())).
|
|
|
Select(`a.id,a.cow_id,a.ear_number,a.pen_id,a.status,b.breed_status,b.pen_name,b.cow_type,
|
|
|
+ DATE_FORMAT(FROM_UNIXTIME(b.last_mating_at),'%Y-%m-%d')as mating_at_format,pregnancy_age,DATEDIFF(CURDATE(), FROM_UNIXTIME(last_mating_at)) AS mating_age,
|
|
|
CASE a.pregnant_check_name
|
|
|
WHEN 'pregnant_check_for_first' THEN '初检'
|
|
|
WHEN 'pregnant_check_for_second' THEN '复检'
|
|
@@ -397,6 +398,7 @@ func (s *StoreEntry) PregnancyCheckCowList(ctx context.Context, req *pasturePb.I
|
|
|
"matingAtFormat": "配种日期",
|
|
|
"matingAge": "配后天数",
|
|
|
"bullId": "配种公牛",
|
|
|
+ "pregnancyAge": "怀孕天数",
|
|
|
},
|
|
|
List: newPregnancyCheckItems,
|
|
|
},
|