Procházet zdrojové kódy

event: mating 配种事件更新

Yi před 6 měsíci
rodič
revize
784779db2a

+ 1 - 1
go.mod

@@ -3,7 +3,7 @@ module kpt-pasture
 go 1.17
 
 require (
-	gitee.com/xuyiping_admin/go_proto v0.0.0-20240918094047-4a5799fc4664
+	gitee.com/xuyiping_admin/go_proto v0.0.0-20240919061932-a470f1859b92
 	gitee.com/xuyiping_admin/pkg v0.0.0-20231218082641-aac597b8a015
 	github.com/dgrijalva/jwt-go v3.2.0+incompatible
 	github.com/eko/gocache v1.1.0

+ 8 - 0
go.sum

@@ -90,6 +90,14 @@ gitee.com/xuyiping_admin/go_proto v0.0.0-20240918070654-f8e5007dfb14 h1:D8a3Imcp
 gitee.com/xuyiping_admin/go_proto v0.0.0-20240918070654-f8e5007dfb14/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
 gitee.com/xuyiping_admin/go_proto v0.0.0-20240918094047-4a5799fc4664 h1:fZ1U58E3S6//eVhJFol1k/bPjACGgfJUEl4mSBypNCc=
 gitee.com/xuyiping_admin/go_proto v0.0.0-20240918094047-4a5799fc4664/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919021444-ca52d1e063b5 h1:gb36NATw2kELss5rqmbf++pnRQEWYfLlJPpz9DKBl2A=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919021444-ca52d1e063b5/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919035403-daaeef13157e h1:2ACGSgOvD/2koF/q8R/hNX3hhslDzsfFo1cYuVL/cB0=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919035403-daaeef13157e/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919060747-513871220a2c h1:pYRrpTtoq7xPPl++KF6dipddCrLUREvd6UZCN0WvHyQ=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919060747-513871220a2c/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919061932-a470f1859b92 h1:pXV0rGbtId8o7XtpG47I/rNzZFsL53S48GlxrPDjAQY=
+gitee.com/xuyiping_admin/go_proto v0.0.0-20240919061932-a470f1859b92/go.mod h1:BKrFW6YLDectlQcQk3FYKBeXvjEiodAKJ5rq7O/QiPE=
 gitee.com/xuyiping_admin/pkg v0.0.0-20231218082641-aac597b8a015 h1:dfb5dRd57L2HKjdwLT93UFmPYFPOmEl56gtZmqcNnaE=
 gitee.com/xuyiping_admin/pkg v0.0.0-20231218082641-aac597b8a015/go.mod h1:Fk4GYI/v0IK3XFrm1Gn+VkgCz5Y7mfswD5hsTJYOG6A=
 github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=

+ 51 - 3
http/handler/event/event_breed.go

@@ -154,8 +154,7 @@ func MatingCreate(c *gin.Context) {
 	if err := valid.ValidateStruct(&req,
 		valid.Field(&req.CowId, valid.Required),
 		valid.Field(&req.StaffMemberId, valid.Required),
-		valid.Field(&req.ExposeEstrusType, valid.Required),
-		valid.Field(&req.BullId, valid.Required),
+		valid.Field(&req.FrozenSemenNumber, valid.Required),
 		valid.Field(&req.MatingAt, valid.Required),
 	); err != nil {
 		apierr.AbortBadRequest(c, http.StatusBadRequest, err)
@@ -301,9 +300,58 @@ func SameTimeCreate(c *gin.Context) {
 		Msg:  "ok",
 		Data: &operationPb.Success{Success: true},
 	})
-
 }
 
 func SameTimeList(c *gin.Context) {
 
 }
+
+func AbortionCreate(c *gin.Context) {
+	var req pasturePb.EventAbortionRequest
+	if err := ginutil.BindProto(c, &req); err != nil {
+		apierr.AbortBadRequest(c, http.StatusBadRequest, err)
+		return
+	}
+
+	if err := valid.ValidateStruct(&req,
+		valid.Field(&req.CowId, valid.Required),
+		valid.Field(&req.IsAfterbirth, valid.Required),
+		valid.Field(&req.AbortionReasons, valid.Required),
+		valid.Field(&req.AbortionAt, valid.Required),
+	); err != nil {
+		apierr.AbortBadRequest(c, http.StatusBadRequest, err)
+		return
+	}
+
+	if err := middleware.BackendOperation(c).OpsService.AbortionCreate(c, &req); err != nil {
+		apierr.ClassifiedAbort(c, err)
+		return
+	}
+
+	ginutil.JSONResp(c, &operationPb.CommonOK{
+		Code: http.StatusOK,
+		Msg:  "ok",
+		Data: &operationPb.Success{Success: true},
+	})
+}
+
+func AbortionList(c *gin.Context) {
+	var req pasturePb.SearchEventRequest
+	if err := ginutil.BindProto(c, &req); err != nil {
+		apierr.AbortBadRequest(c, http.StatusBadRequest, err)
+		return
+	}
+
+	pagination := &pasturePb.PaginationModel{
+		Page:       int32(c.GetInt(middleware.Page)),
+		PageSize:   int32(c.GetInt(middleware.PageSize)),
+		PageOffset: int32(c.GetInt(middleware.PageOffset)),
+	}
+
+	res, err := middleware.Dependency(c).StoreEventHub.OpsService.AbortionList(c, &req, pagination)
+	if err != nil {
+		apierr.ClassifiedAbort(c, err)
+		return
+	}
+	ginutil.JSONResp(c, res)
+}

+ 4 - 0
http/route/event_api.go

@@ -45,5 +45,9 @@ func EventAPI(opts ...func(engine *gin.Engine)) func(s *gin.Engine) {
 		eventRoute.POST("/same/time/list", event.SameTimeList)
 		eventRoute.POST("/same/time/create", event.SameTimeCreate)
 
+		// 流产
+		eventRoute.POST("/abortion/list", event.AbortionList)
+		eventRoute.POST("/abortion/create", event.AbortionCreate)
+
 	}
 }

+ 0 - 102
model/cow_mating.go

@@ -1,102 +0,0 @@
-package model
-
-import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
-
-const (
-	SourceSameTime = 1
-	SourceEstrus   = 2
-)
-
-type CowMating struct {
-	Id            int64                 `json:"id"`
-	CowId         int64                 `json:"cowId"`
-	PlanDay       string                `json:"planDay"`
-	EndDay        string                `json:"endDay"`
-	RealityDay    string                `json:"realityDay"`
-	Status        pasturePb.IsShow_Kind `json:"status"`
-	Source        int                   `json:"source"`
-	OperationId   int64                 `json:"operationId"`
-	OperationName string                `json:"operationName"`
-	CreatedAt     int64                 `json:"createdAt"`
-	UpdatedAt     int64                 `json:"updatedAt"`
-}
-
-func (c *CowMating) TableName() string {
-	return "cow_mating"
-}
-
-func NewCowMating(cowId int64, planDay string, sourceId int) *CowMating {
-	return &CowMating{
-		CowId:   cowId,
-		PlanDay: planDay,
-		Status:  pasturePb.IsShow_No,
-		Source:  sourceId,
-	}
-}
-
-func NewCowMatingList(cowList []*Cow, planDay string) []*CowMating {
-	var matingList []*CowMating
-	for _, cow := range cowList {
-		matingList = append(matingList, NewCowMating(cow.Id, planDay, SourceSameTime))
-	}
-	return matingList
-}
-
-type CowMatingHeader struct {
-	Id              string `json:"id"`
-	CowId           string `json:"cowId"`
-	PlanDay         string `json:"planDay"`
-	Lact            string `json:"lact"`
-	Status          string `json:"status"`
-	BreedStatusName string `json:"breedStatusName"`
-	BreedStatus     string `json:"breedStatus"`
-	CowTypeName     string `json:"cowTypeName"`
-	PenName         string `json:"penName"`
-	DayAge          string `json:"dayAge"`
-	CalvingAge      string `json:"calvingAge"`
-	AbortionAge     string `json:"abortionAge"`
-}
-
-type CowMatingBody struct {
-	Id              int64                      `json:"id"`
-	CowId           int64                      `json:"cowId"`
-	BreedStatus     pasturePb.BreedStatus_Kind `json:"breedStatus"`
-	BreedStatusName string                     `json:"breedStatusName"`
-	CowType         pasturePb.CowType_Kind     `json:"cowType"`
-	CowTypeName     string                     `json:"cowTypeName"`
-	PenId           int32                      `json:"penId"`
-	PenName         string                     `json:"penName"`
-	Lact            int32                      `json:"lact"`
-	CalvingAge      int32                      `json:"calvingAge"`
-	AbortionAge     int32                      `json:"abortionAge"`
-	DayAge          int32                      `json:"dayAge"`
-	Status          pasturePb.IsShow_Kind      `json:"status"`
-}
-
-type CowMatingBodySlice []*CowMatingBody
-
-func (s CowMatingBodySlice) ToPB(
-	cowTypeMap map[pasturePb.CowType_Kind]string,
-	breedStatusMap map[pasturePb.BreedStatus_Kind]string,
-	penMap map[int32]*Pen,
-) []*CowMatingBody {
-	res := make([]*CowMatingBody, len(s))
-	for i, v := range s {
-		res[i] = &CowMatingBody{
-			Id:              v.Id,
-			CowId:           v.CowId,
-			CowType:         v.CowType,
-			CowTypeName:     cowTypeMap[v.CowType],
-			BreedStatus:     v.BreedStatus,
-			BreedStatusName: breedStatusMap[v.BreedStatus],
-			PenName:         penMap[v.PenId].Name,
-			PenId:           v.PenId,
-			Lact:            v.Lact,
-			CalvingAge:      v.CalvingAge,
-			AbortionAge:     v.AbortionAge,
-			DayAge:          v.DayAge,
-			Status:          v.Status,
-		}
-	}
-	return res
-}

+ 50 - 1
model/event_abortion.go

@@ -1,11 +1,17 @@
 package model
 
-import pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
+import (
+	"strings"
+
+	pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
+)
 
 type EventAbortion struct {
 	Id                  int64                          `json:"id"`
 	CowId               int64                          `json:"cowId"`
 	Lact                int32                          `json:"lact"`
+	DayAge              int32                          `json:"dayAge"`
+	PregnantAge         int32                          `json:"pregnantAge"`
 	AbortionAt          int64                          `json:"abortionAt"`
 	IsAfterbirth        pasturePb.IsShow_Kind          `json:"isAfterbirth"`
 	Photos              string                         `json:"photos"`
@@ -21,3 +27,46 @@ type EventAbortion struct {
 func (e *EventAbortion) TableName() string {
 	return "event_abortion"
 }
+
+func NewEventAbortion(cow *Cow, req *pasturePb.EventAbortionRequest, abortionReasonMap map[pasturePb.AbortionReasons_Kind]string) *EventAbortion {
+	return &EventAbortion{
+		CowId:               int64(req.CowId),
+		Lact:                cow.Lact,
+		PregnantAge:         cow.GetDaysPregnant(),
+		DayAge:              cow.DayAge,
+		AbortionAt:          int64(req.AbortionAt),
+		IsAfterbirth:        req.IsAfterbirth,
+		Photos:              strings.Join(req.Photos, ","),
+		AbortionReasons:     req.AbortionReasons,
+		AbortionReasonsName: abortionReasonMap[req.AbortionReasons],
+		Remarks:             req.Remarks,
+		OperationId:         int64(req.OperationId),
+		OperationName:       req.OperationName,
+	}
+}
+
+type AbortionSlice []*EventAbortion
+
+func (a AbortionSlice) ToPB() []*pasturePb.EventAbortionRequest {
+	res := make([]*pasturePb.EventAbortionRequest, len(a))
+	for i, v := range a {
+		res[i] = &pasturePb.EventAbortionRequest{
+			Id:                  int32(v.Id),
+			CowId:               int32(v.CowId),
+			DayAge:              v.DayAge,
+			Lact:                v.Lact,
+			AbortionAt:          int32(v.AbortionAt),
+			IsAfterbirth:        v.IsAfterbirth,
+			Photos:              strings.Split(v.Photos, ","),
+			AbortionReasons:     v.AbortionReasons,
+			AbortionReasonsName: v.AbortionReasonsName,
+			PregnancyAge:        v.PregnantAge,
+			Remarks:             v.Remarks,
+			OperationId:         int32(v.OperationId),
+			OperationName:       v.OperationName,
+			CreatedAt:           int32(v.CreatedAt),
+			UpdatedAt:           int32(v.UpdatedAt),
+		}
+	}
+	return res
+}

+ 6 - 6
model/cow_same_time_detail.go → model/event_cow_same_time.go

@@ -4,7 +4,7 @@ import (
 	pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
 )
 
-type CowSameTimeDetail struct {
+type EventCowSameTime struct {
 	Id            int64                       `json:"id"`
 	CowId         int64                       `json:"cowId"`
 	PenId         int32                       `json:"penId"`
@@ -25,14 +25,14 @@ type CowSameTimeDetail struct {
 	UpdatedAt     int64                       `json:"updatedAt"`
 }
 
-func (s *CowSameTimeDetail) TableName() string {
-	return "cow_same_time_detail"
+func (s *EventCowSameTime) TableName() string {
+	return "event_cow_same_time"
 }
 
-func NewCowSameTimeDetailList(cowList []*Cow, sameTimeId int64, planTime string, sameTimeType pasturePb.SameTimeType_Kind) []*CowSameTimeDetail {
-	res := make([]*CowSameTimeDetail, len(cowList))
+func NewCowSameTimeDetailList(cowList []*Cow, sameTimeId int64, planTime string, sameTimeType pasturePb.SameTimeType_Kind) []*EventCowSameTime {
+	res := make([]*EventCowSameTime, len(cowList))
 	for i, cow := range cowList {
-		res[i] = &CowSameTimeDetail{
+		res[i] = &EventCowSameTime{
 			CowId:        cow.Id,
 			Lact:         cow.Lact,
 			PenId:        cow.PenId,

+ 87 - 31
model/event_mating.go

@@ -7,14 +7,18 @@ type EventMating struct {
 	CowId             int64                           `json:"cowId"`
 	DayAge            int64                           `json:"dayAge"`
 	Lact              int8                            `json:"lact"`
-	LactationDays     int32                           `json:"lactationDays"`
+	CalvingAge        int32                           `json:"calvingAge"`
+	PlanDay           string                          `json:"planDay"`
+	EndDay            string                          `json:"endDay"`
+	RealityDay        string                          `json:"realityDay"`
+	Status            pasturePb.IsShow_Kind           `json:"status"`
 	MatingNumber      int64                           `json:"matingNumber"`
 	MatingResult      pasturePb.MatingResult_Kind     `json:"matingResult"`
 	ExposeEstrusType  pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
-	MatingAt          int64                           `json:"matingAt"`
 	FrozenSemenNumber string                          `json:"frozenSemenNumber"`
-	StallNumberId     int64                           `json:"stallNumberId"`
+	FrozenSemenCount  int32                           `json:"frozenSemenCount"`
 	OperationId       int64                           `json:"operationId"`
+	OperationName     string                          `json:"operationName"`
 	Remarks           string                          `json:"remarks"`
 	CreatedAt         int64                           `json:"createdAt"`
 	UpdatedAt         int64                           `json:"updatedAt"`
@@ -24,55 +28,107 @@ func (e *EventMating) TableName() string {
 	return "event_mating"
 }
 
-func NewEventMating(cow *Cow, currentUser *SystemUser, req *pasturePb.EventMating) *EventMating {
+func NewEventMating(cow *Cow, planDay string) *EventMating {
 	return &EventMating{
-		CowId:             cow.Id,
-		DayAge:            int64(cow.GetDayAge()),
-		Lact:              int8(cow.Lact),
-		LactationDays:     cow.GetLactationDays(),
-		MatingNumber:      1,
-		MatingResult:      pasturePb.MatingResult_Unknown,
-		ExposeEstrusType:  req.ExposeEstrusType,
-		MatingAt:          int64(req.MatingAt),
-		FrozenSemenNumber: req.FrozenSemenNumber,
-		StallNumberId:     int64(req.StaffMemberId),
-		OperationId:       currentUser.Id,
-		Remarks:           req.Remarks,
+		CowId:            cow.Id,
+		Lact:             int8(cow.Lact),
+		PlanDay:          planDay,
+		EndDay:           planDay,
+		MatingResult:     pasturePb.MatingResult_Invalid,
+		ExposeEstrusType: pasturePb.ExposeEstrusType_Same_Time,
+		Status:           pasturePb.IsShow_No,
 	}
 }
 
+func NewEventMatingList(cowList []*Cow, planDay string) []*EventMating {
+	var matingList []*EventMating
+	for _, cow := range cowList {
+		matingList = append(matingList, NewEventMating(cow, planDay))
+	}
+	return matingList
+}
+
 type EventMatingSlice []*EventMating
 
-func (e EventMatingSlice) ToPB(user []*SystemUser, exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
+func (e EventMatingSlice) ToPB(exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
 	res := make([]*pasturePb.SearchMatingList, len(e))
 	for i, v := range e {
-		operationName, staffMemberName := "", ""
-		for _, u := range user {
-			if v.OperationId == u.Id {
-				operationName = u.Name
-			}
-			if v.StallNumberId == u.Id {
-				staffMemberName = u.Name
-			}
-		}
 		res[i] = &pasturePb.SearchMatingList{
 			Id:                   int32(v.Id),
 			CowId:                int32(v.CowId),
 			DayAge:               int32(v.DayAge),
 			Lact:                 int32(v.Lact),
+			CalvingAge:           v.CalvingAge,
+			PlanDay:              v.PlanDay,
+			RealityDay:           v.RealityDay,
 			ExposeEstrusType:     v.ExposeEstrusType,
 			ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
-			MatingAt:             int32(v.MatingAt),
 			FrozenSemenNumber:    v.FrozenSemenNumber,
-			LactationDays:        v.LactationDays,
-			StaffMemberId:        int32(v.StallNumberId),
-			StaffMemberName:      staffMemberName,
 			Remarks:              v.Remarks,
 			OperationId:          int32(v.OperationId),
-			OperationName:        operationName,
+			OperationName:        v.OperationName,
 			CreatedAt:            int32(v.CreatedAt),
 			UpdatedAt:            int32(v.UpdatedAt),
 		}
 	}
 	return res
 }
+
+type CowMatingHeader struct {
+	Id              string `json:"id"`
+	CowId           string `json:"cowId"`
+	PlanDay         string `json:"planDay"`
+	Lact            string `json:"lact"`
+	Status          string `json:"status"`
+	BreedStatusName string `json:"breedStatusName"`
+	BreedStatus     string `json:"breedStatus"`
+	CowTypeName     string `json:"cowTypeName"`
+	PenName         string `json:"penName"`
+	DayAge          string `json:"dayAge"`
+	CalvingAge      string `json:"calvingAge"`
+	AbortionAge     string `json:"abortionAge"`
+}
+
+type CowMatingBody struct {
+	Id              int64                      `json:"id"`
+	CowId           int64                      `json:"cowId"`
+	BreedStatus     pasturePb.BreedStatus_Kind `json:"breedStatus"`
+	BreedStatusName string                     `json:"breedStatusName"`
+	CowType         pasturePb.CowType_Kind     `json:"cowType"`
+	CowTypeName     string                     `json:"cowTypeName"`
+	PenId           int32                      `json:"penId"`
+	PenName         string                     `json:"penName"`
+	Lact            int32                      `json:"lact"`
+	CalvingAge      int32                      `json:"calvingAge"`
+	AbortionAge     int32                      `json:"abortionAge"`
+	DayAge          int32                      `json:"dayAge"`
+	Status          pasturePb.IsShow_Kind      `json:"status"`
+}
+
+type CowMatingBodySlice []*CowMatingBody
+
+func (s CowMatingBodySlice) ToPB(
+	cowTypeMap map[pasturePb.CowType_Kind]string,
+	breedStatusMap map[pasturePb.BreedStatus_Kind]string,
+	penMap map[int32]*Pen,
+) []*CowMatingBody {
+	res := make([]*CowMatingBody, len(s))
+	for i, v := range s {
+		res[i] = &CowMatingBody{
+			Id:              v.Id,
+			CowId:           v.CowId,
+			CowType:         v.CowType,
+			CowTypeName:     cowTypeMap[v.CowType],
+			BreedStatus:     v.BreedStatus,
+			BreedStatusName: breedStatusMap[v.BreedStatus],
+			PenName:         penMap[v.PenId].Name,
+			PenId:           v.PenId,
+			Lact:            v.Lact,
+			CalvingAge:      v.CalvingAge,
+			AbortionAge:     v.AbortionAge,
+			DayAge:          v.DayAge,
+			Status:          v.Status,
+		}
+	}
+	return res
+}

+ 8 - 8
model/cow_weaning.go → model/event_weaning.go

@@ -6,7 +6,7 @@ import (
 	pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
 )
 
-type CowWeaning struct {
+type EventWeaning struct {
 	Id            int64                 `json:"id"`
 	CowId         int64                 `json:"cowId"`
 	PlanDay       string                `json:"planDay"`
@@ -23,12 +23,12 @@ type CowWeaning struct {
 	UpdatedAt     int64                 `json:"updatedAt"`
 }
 
-func (c *CowWeaning) TableName() string {
-	return "cow_weaning"
+func (c *EventWeaning) TableName() string {
+	return "event_weaning"
 }
 
-func NewWeaningCow(cowId int64, planDay int64, penId int32) *CowWeaning {
-	return &CowWeaning{
+func NewEventWeaning(cowId int64, planDay int64, penId int32) *EventWeaning {
+	return &EventWeaning{
 		CowId:       cowId,
 		PlanDay:     time.Unix(planDay, 0).Format(LayoutDate2),
 		EndDay:      time.Unix(planDay, 0).Format(LayoutDate2),
@@ -37,10 +37,10 @@ func NewWeaningCow(cowId int64, planDay int64, penId int32) *CowWeaning {
 	}
 }
 
-func NewCowWeaningList(cowList []*Cow, planDay int64) []*CowWeaning {
-	var weaningList = make([]*CowWeaning, 0)
+func NewCowWeaningList(cowList []*Cow, planDay int64) []*EventWeaning {
+	var weaningList = make([]*EventWeaning, 0)
 	for _, cow := range cowList {
-		weaningList = append(weaningList, NewWeaningCow(cow.Id, planDay, cow.PenId))
+		weaningList = append(weaningList, NewEventWeaning(cow.Id, planDay, cow.PenId))
 	}
 	return weaningList
 }

+ 3 - 3
module/backend/calendar.go

@@ -121,7 +121,7 @@ func (s *StoreEntry) ImmunisationCowList(ctx context.Context, dateTime string, p
 func (s *StoreEntry) SameTimeCowList(ctx context.Context, dateTime string, pagination *pasturePb.PaginationModel, calendarType pasturePb.CalendarType_Kind) (*model.CalendarResponse, error) {
 	sameTimeBodyList := make([]*model.SameTimeBody, 0)
 	count := int64(0)
-	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.CowSameTimeDetail).TableName())).
+	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
 		Select("a.id,a.cow_id,a.status,b.breed_status,b.cow_type,b.pen_id,b.day_age,b.calving_age,b.abortion_age").
 		Joins("left join cow as b on a.cow_id = b.id").
 		Where("b.is_remove = ?", pasturePb.IsShow_No).
@@ -181,7 +181,7 @@ func (s *StoreEntry) WeaningCowList(ctx context.Context, dateTime string, pagina
 	weaningBodyList := make([]*model.WeaningBody, 0)
 	count := int64(0)
 
-	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.CowSameTimeDetail).TableName())).
+	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
 		Select("a.*,b.day_age").
 		Joins("left join cow as b on a.cow_id = b.id").
 		Where("b.is_remove = ?", pasturePb.IsShow_No).
@@ -222,7 +222,7 @@ func (s *StoreEntry) TreatmentCowList(ctx context.Context, dateTime string, pagi
 func (s *StoreEntry) MatingCowList(ctx context.Context, dateTime string, pagination *pasturePb.PaginationModel) (*model.CalendarResponse, error) {
 	cowMatingBodyList := make([]*model.CowMatingBody, 0)
 	count := int64(0)
-	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.CowSameTimeDetail).TableName())).
+	pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
 		Select("a.id,a.cow_id,a.status,b.breed_status,b.cow_type,b.pen_id,b.day_age,b.calving_age,b.abortion_age").
 		Joins("left join cow as b on a.cow_id = b.id").
 		Where("b.is_remove = ?", pasturePb.IsShow_No).

+ 44 - 2
module/backend/config_data.go

@@ -548,11 +548,11 @@ func (s *StoreEntry) ExposeEstrusTypeEnumList() []*pasturePb.ConfigOptionsList {
 			Disabled: true,
 		}, &pasturePb.ConfigOptionsList{
 			Value:    int32(pasturePb.ExposeEstrusType_Foot_Ring),
-			Label:    "脚环/计步器揭发",
+			Label:    "脚环揭发",
 			Disabled: true,
 		}, &pasturePb.ConfigOptionsList{
 			Value:    int32(pasturePb.ExposeEstrusType_Manual_Observation),
-			Label:    "人工观察",
+			Label:    "人工揭发",
 			Disabled: true,
 		})
 	return configOptions
@@ -754,3 +754,45 @@ func CalendarTypeEnumList() []*pasturePb.ConfigOptionsList {
 	})
 	return configOptions
 }
+
+func (s *StoreEntry) AbortionReasonsEnumList() []*pasturePb.ConfigOptionsList {
+	configOptions := make([]*pasturePb.ConfigOptionsList, 0)
+	configOptions = append(configOptions, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Mechanical_Abortion),
+		Label:    "机械性流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Malnutrition_Abortion),
+		Label:    "营养不良性流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Mycotoxin_Abortion),
+		Label:    "霉菌毒素流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Habitual_Abortion),
+		Label:    "习惯性流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Brucellosis_Abortion),
+		Label:    "布病流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Inflammatory_Abortion),
+		Label:    "产道炎症性流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Heat_Stress_Abortion),
+		Label:    "热应激流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Infectious_Abortion),
+		Label:    "传染病性流产",
+		Disabled: true,
+	}, &pasturePb.ConfigOptionsList{
+		Value:    int32(pasturePb.AbortionReasons_Other),
+		Label:    "其他",
+		Disabled: true,
+	})
+	return configOptions
+}

+ 8 - 0
module/backend/enum_map.go

@@ -129,3 +129,11 @@ func CalendarTypeMap() map[pasturePb.CalendarType_Kind]string {
 	}
 	return res
 }
+
+func (s *StoreEntry) AbortionReasonsMap() map[pasturePb.AbortionReasons_Kind]string {
+	res := make(map[pasturePb.AbortionReasons_Kind]string)
+	for _, v := range s.AbortionReasonsEnumList() {
+		res[pasturePb.AbortionReasons_Kind(v.Value)] = v.Label
+	}
+	return res
+}

+ 151 - 45
module/backend/event_breed.go

@@ -2,9 +2,9 @@ package backend
 
 import (
 	"context"
-	"errors"
 	"fmt"
 	"kpt-pasture/model"
+	"kpt-pasture/util"
 	"net/http"
 	"strings"
 	"time"
@@ -227,7 +227,12 @@ func (s *StoreEntry) PregnantCheckCreate(ctx context.Context, req *pasturePb.Eve
 }
 
 // 抽象公共方法来更新牛只状态
-func (s *StoreEntry) updateCowStatus(tx *gorm.DB, cowIds []int64, breedStatus pasturePb.BreedStatus_Kind, matingResult pasturePb.MatingResult_Kind) error {
+func (s *StoreEntry) updateCowStatus(
+	tx *gorm.DB,
+	cowIds []int64,
+	breedStatus pasturePb.BreedStatus_Kind,
+	matingResult pasturePb.MatingResult_Kind,
+) error {
 	if len(cowIds) > 0 {
 		if err := tx.Model(&model.Cow{}).Where("cow_id IN ?", cowIds).
 			Updates(map[string]interface{}{"breed_status": breedStatus}).Error; err != nil {
@@ -246,7 +251,9 @@ func (s *StoreEntry) updateCowStatus(tx *gorm.DB, cowIds []int64, breedStatus pa
 func (s *StoreEntry) MatingList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.MatingEventResponse, error) {
 	matingList := make([]*model.EventMating, 0)
 	var count int64 = 0
-	pref := s.DB.Table(new(model.EventMating).TableName())
+	pref := s.DB.Model(new(model.EventMating)).
+		Where("mating_result > ?", pasturePb.MatingResult_Invalid).
+		Where("status = ?", pasturePb.IsShow_No)
 	if len(req.CowId) > 0 {
 		cowIds := strings.Split(req.CowId, ",")
 		pref.Where("cow_id IN ?", cowIds)
@@ -259,13 +266,12 @@ func (s *StoreEntry) MatingList(ctx context.Context, req *pasturePb.SearchEventR
 		return nil, xerr.WithStack(err)
 	}
 
-	systemUserList, _ := s.SystemUserList(ctx)
 	exposeEstrusTypeMap := s.ExposeEstrusTypeMap()
 	return &pasturePb.MatingEventResponse{
 		Code:    http.StatusOK,
 		Message: "ok",
 		Data: &pasturePb.SearchMatingData{
-			List:     model.EventMatingSlice(matingList).ToPB(systemUserList, exposeEstrusTypeMap),
+			List:     model.EventMatingSlice(matingList).ToPB(exposeEstrusTypeMap),
 			Total:    int32(count),
 			PageSize: pagination.PageSize,
 			Page:     pagination.Page,
@@ -282,15 +288,13 @@ func (s *StoreEntry) MatingCreate(ctx context.Context, req *pasturePb.EventMatin
 		return xerr.WithStack(err)
 	}
 
+	systemUser, _ := s.GetSystemUserById(ctx, int64(req.StaffMemberId))
 	eventFrozenSemenLogList := make([]*model.FrozenSemenLog, 0)
-	currentUser, _ := s.GetCurrentSystemUser(ctx)
 	frozenSemen := &model.FrozenSemen{}
-	if err = s.DB.Where("bull_id = ?", req.BullId).First(frozenSemen).Error; err != nil {
+	if err = s.DB.Where("bull_id = ?", req.FrozenSemenNumber).First(frozenSemen).Error; err != nil {
 		return xerr.WithStack(err)
 	}
 
-	sameTimeCowIds := make([]int64, 0)
-	matingInsertList := make([]*model.EventMating, 0)
 	matingUpdateIds := make([]int64, 0)
 	cowIds := make([]int64, 0)
 	nowTime := time.Now()
@@ -305,38 +309,40 @@ func (s *StoreEntry) MatingCreate(ctx context.Context, req *pasturePb.EventMatin
 		}
 
 		// 判断当前输精时间距离上次输精时间是否超过2天,如果超过则更新为复配状态
-		itemBeforeTwoDays := nowTime.Sub(time.Unix(itemEventMating.MatingAt, 0)).Hours()
+		itemBeforeTwoDays := nowTime.Sub(time.Unix(util.TimeParseLocalUnix(itemEventMating.RealityDay), 0)).Hours()
 		if count > 0 && itemBeforeTwoDays > 48 {
 			matingUpdateIds = append(matingUpdateIds, itemEventMating.Id)
-		} else {
-			matingInsertList = append(matingInsertList, model.NewEventMating(cow, currentUser, req))
 		}
 
 		eventFrozenSemenLogList = append(
 			eventFrozenSemenLogList,
-			model.NewEventFrozenSemenLog(req.BullId, cow, int64(req.StaffMemberId)),
+			model.NewEventFrozenSemenLog(req.FrozenSemenNumber, cow, int64(req.StaffMemberId)),
 		)
-		sameTimeCow := &model.CowSameTime{}
-		if err = s.DB.Where("lact = ?", cow.Lact).
-			Where("cow_id = ?", cow.Id).
-			Where("status = ?", pasturePb.SameTimeStatus_In_Progress).
-			First(sameTimeCow).Error; err != nil {
-			if !errors.Is(err, gorm.ErrRecordNotFound) {
-				return xerr.WithStack(err)
-			}
-		}
-		if sameTimeCow.Id > 0 {
-			sameTimeCowIds = append(sameTimeCowIds, sameTimeCow.Id)
-		}
 
 		cowIds = append(cowIds, cow.Id)
 	}
 
 	if err = s.DB.Transaction(func(tx *gorm.DB) error {
+		if len(cowIds) > 0 {
+			// 如果有同期牛只,则修改为已结束状态
+			if err = tx.Table(new(model.CowSameTime).TableName()).
+				Where("cow_id IN ?", cowIds).
+				UpdateColumn("status", pasturePb.SameTimeStatus_End).Error; err != nil {
+			}
 
-		// 创建配种事件数据
-		if len(matingInsertList) > 0 {
-			if err = tx.Create(matingInsertList).Error; err != nil {
+			// 创建配种事件数据
+			if err = tx.Model(new(model.EventMating)).
+				Where("cow_id IN ?", cowIds).
+				Updates(map[string]interface{}{
+					"mating_result":       pasturePb.MatingResult_Unknown,
+					"status":              pasturePb.IsShow_Ok,
+					"reality_day":         time.Unix(int64(req.MatingAt), 0).Format(model.LayoutTime),
+					"mating_number":       1,
+					"frozen_semen_number": req.FrozenSemenCount,
+					"operation_id":        req.StaffMemberId,
+					"operation_name":      systemUser.Name,
+				}).
+				Error; err != nil {
 				return xerr.WithStack(err)
 			}
 		}
@@ -346,7 +352,11 @@ func (s *StoreEntry) MatingCreate(ctx context.Context, req *pasturePb.EventMatin
 			if err = tx.Model(new(model.EventMating)).
 				Where("id IN ?", matingUpdateIds).
 				Where("mating_result = ?", pasturePb.MatingResult_Unknown).
-				Update("mating_result", pasturePb.MatingResult_ReMatch).
+				Updates(map[string]interface{}{
+					"mating_result":       pasturePb.MatingResult_ReMatch,
+					"mating_number":       2,
+					"frozen_semen_number": req.FrozenSemenCount,
+				}).
 				Error; err != nil {
 				return xerr.WithStack(err)
 			}
@@ -357,20 +367,12 @@ func (s *StoreEntry) MatingCreate(ctx context.Context, req *pasturePb.EventMatin
 			return xerr.WithStack(err)
 		}
 
-		// 如果有同期牛只,则修改为已结束状态
-		if len(sameTimeCowIds) > 0 {
-			if err = tx.Table(new(model.CowSameTime).TableName()).
-				Where("id IN ?", sameTimeCowIds).
-				UpdateColumn("status", pasturePb.SameTimeStatus_End).Error; err != nil {
-			}
-		}
-
 		// 减去精液的数量
-		if err = tx.Table(new(model.FrozenSemen).TableName()).
-			Where("bull_id = ?", req.BullId).
+		if err = tx.Model(new(model.FrozenSemen)).
+			Where("id = ?", frozenSemen.Id).
 			Where("quantity > 0").
 			UpdateColumn("quantity",
-				gorm.Expr("quantity - ?", len(matingUpdateIds)+len(matingInsertList)),
+				gorm.Expr("quantity - ?", len(matingUpdateIds)),
 			).Error; err != nil {
 			return xerr.WithStack(err)
 		}
@@ -484,8 +486,7 @@ func (s *StoreEntry) FrozenSemenCreate(ctx context.Context, req *pasturePb.Searc
 }
 
 func (s *StoreEntry) SameTimeCreate(ctx context.Context, req *pasturePb.EventSameTime) error {
-	/*sameTime, err := s.GetSameTimeById(ctx, int64(req.SameTimeId))
-	if err != nil {
+	if _, err := s.GetSameTimeById(ctx, int64(req.SameTimeId)); err != nil {
 		return xerr.WithStack(err)
 	}
 
@@ -493,6 +494,10 @@ func (s *StoreEntry) SameTimeCreate(ctx context.Context, req *pasturePb.EventSam
 	if err != nil {
 		return xerr.WithStack(err)
 	}
+	cowIds := make([]int64, 0)
+	for _, v := range cowList {
+		cowIds = append(cowIds, v.Id)
+	}
 
 	drugs := &model.Drugs{}
 	if req.DrugsId > 0 {
@@ -500,14 +505,115 @@ func (s *StoreEntry) SameTimeCreate(ctx context.Context, req *pasturePb.EventSam
 			return xerr.WithStack(err)
 		}
 	}
-	newSameTimeCowList := model.NewSameTimeCowList(cowList, sameTime)
+	systemUser, _ := s.GetSystemUserById(ctx, int64(req.StaffMemberId))
+
+	if err = s.DB.Transaction(func(tx *gorm.DB) error {
+		if err = tx.Model(new(model.CowSameTime)).
+			Where("cow_id IN ?", cowIds).
+			Where("same_time_id = ?", req.SameTimeId).
+			Update("same_time_status", pasturePb.SameTimeStatus_In_Progress).Error; err != nil {
+			return xerr.WithStack(err)
+		}
+
+		if err = tx.Model(new(model.EventCowSameTime)).
+			Where("cow_id IN ?", cowIds).
+			Where("same_time_id = ?", req.SameTimeId).
+			Where("same_time_type = ?", req.SameTimeType).
+			Updates(map[string]interface{}{
+				"status":         pasturePb.IsShow_Ok,
+				"drug_id":        drugs.Id,
+				"unit":           drugs.Unit,
+				"usage":          req.Usage,
+				"remarks":        req.Remarks,
+				"operation_id":   req.StaffMemberId,
+				"operation_name": systemUser.Name,
+			}).Error; err != nil {
+			return xerr.WithStack(err)
+		}
+
+		return nil
+	}); err != nil {
+		return xerr.WithStack(err)
+	}
+	return nil
+}
+
+func (s *StoreEntry) AbortionCreate(ctx context.Context, req *pasturePb.EventAbortionRequest) error {
+	cow, err := s.GetCowInfoByCowId(ctx, int64(req.CowId))
+	if err != nil {
+		return xerr.WithStack(err)
+	}
+
+	systemUser, err := s.GetSystemUserById(ctx, int64(req.OperationId))
+	if err != nil {
+		return xerr.WithStack(err)
+	}
+
+	req.OperationName = systemUser.Name
+	abortionReasonsMap := s.AbortionReasonsMap()
+	newEventAbortion := model.NewEventAbortion(cow, req, abortionReasonsMap)
+
+	lastCowMating := &model.EventMating{}
+	if err = s.DB.Where("cow_id = ?", cow.Id).Order("id desc").First(lastCowMating).Error; err != nil {
+		return xerr.WithStack(err)
+	}
 	if err = s.DB.Transaction(func(tx *gorm.DB) error {
-		if err = tx.Create(eventSameTimeList).Error; err != nil {
+		// 创建牛只流产事件数据
+		if err = tx.Create(newEventAbortion).Error; err != nil {
 			return xerr.WithStack(err)
 		}
+		// 更新牛只状态
+		if err = tx.Model(new(model.Cow)).Where("id = ?", req.CowId).
+			Updates(map[string]interface{}{
+				"is_pregnant":      pasturePb.IsShow_No,
+				"last_abortion_at": req.AbortionAt,
+				"breed_status":     pasturePb.BreedStatus_Abort,
+			}).Error; err != nil {
+			return xerr.WithStack(err)
+		}
+
+		// 更新最近一次配种结果为流产
+		if err = tx.Model(new(model.EventMating)).Where("id = ?", lastCowMating.Id).
+			Updates(map[string]interface{}{
+				"mating_result": pasturePb.MatingResult_Abort,
+			}).Error; err != nil {
+		}
 		return nil
 	}); err != nil {
 		return xerr.WithStack(err)
-	}*/
+	}
+
 	return nil
 }
+
+func (s *StoreEntry) AbortionList(
+	ctx context.Context,
+	req *pasturePb.SearchEventRequest,
+	pagination *pasturePb.PaginationModel,
+) (*pasturePb.EventAbortionResponse, error) {
+	abortionList := make([]*model.EventAbortion, 0)
+	var count int64 = 0
+	pref := s.DB.Model(new(model.EventAbortion))
+	if len(req.CowId) > 0 {
+		cowIds := strings.Split(req.CowId, ",")
+		pref.Where("cow_id IN ?", cowIds)
+	}
+
+	if err := pref.Order("id desc").
+		Count(&count).Limit(int(pagination.PageSize)).
+		Offset(int(pagination.PageOffset)).
+		Find(&abortionList).Error; err != nil {
+		return nil, xerr.WithStack(err)
+	}
+
+	return &pasturePb.EventAbortionResponse{
+		Code:    http.StatusOK,
+		Message: "ok",
+		Data: &pasturePb.EventAbortionData{
+			List:     model.AbortionSlice(abortionList).ToPB(),
+			Total:    int32(count),
+			PageSize: pagination.PageSize,
+			Page:     pagination.Page,
+		},
+	}, nil
+}

+ 14 - 2
module/backend/interface.go

@@ -146,26 +146,38 @@ type ConfigDataService interface {
 
 //go:generate mockgen -destination mock/EventService.go -package kptservicemock kpt-pasture/module/backend EventService
 type EventService interface {
+	// EnterList 入场列表
 	EnterList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchEnterEventResponse, error)
 	CreateEnter(ctx context.Context, req *pasturePb.EventEnterData) error
+	// GroupTransferList 转群
 	GroupTransferList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchTransferGroupEventResponse, error)
 	CreateGroupTransfer(ctx context.Context, req *pasturePb.TransferGroupEventRequest) error
+	// BodyScoreList 体况评分
 	BodyScoreList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBodyScoreEventResponse, error)
 	CreateBodyScore(ctx context.Context, req *pasturePb.BodyScoreEventRequest) error
+	// CalvingList 分娩
 	CalvingList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchLavingEventResponse, error)
 	CalvingCreate(ctx context.Context, req *pasturePb.EventCalving) error
+	// PregnantCheckList 孕检
 	PregnantCheckList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PregnantCheckEventResponse, error)
 	PregnantCheckCreate(ctx context.Context, req *pasturePb.EventPregnantCheck) error
+	// MatingList 配种
 	MatingList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.MatingEventResponse, error)
 	MatingCreate(ctx context.Context, req *pasturePb.EventMating) error
+	// EstrusList 发情
 	EstrusList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.EstrusEventResponse, error)
 	EstrusCreate(ctx context.Context, req *pasturePb.EventEstrus) error
+	// FrozenSemenList 冻精
 	FrozenSemenList(ctx context.Context, req *pasturePb.FrozenSemenRequest, pagination *pasturePb.PaginationModel) (*pasturePb.FrozenSemenResponse, error)
 	FrozenSemenCreate(ctx context.Context, req *pasturePb.SearchFrozenSemenList) error
+	// AbortionList 流产
+	AbortionList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.EventAbortionResponse, error)
+	AbortionCreate(ctx context.Context, req *pasturePb.EventAbortionRequest) error
+	// SameTimeCreate 同期
+	SameTimeCreate(ctx context.Context, req *pasturePb.EventSameTime) error
+	// WeightList 称重
 	WeightList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchWeightEventResponse, error)
 	WeightCreate(ctx context.Context, req *pasturePb.EventWeight) error
-
-	SameTimeCreate(ctx context.Context, req *pasturePb.EventSameTime) error
 }
 
 //go:generate mockgen -destination mock/CowService.go -package kptservicemock kpt-pasture/module/backend CowService

+ 1 - 2
module/backend/sql.go

@@ -194,8 +194,7 @@ func (s *StoreEntry) GetWorkOrderSubByWorkOrderId(ctx context.Context, workOrder
 func (s *StoreEntry) GetSameTimeById(ctx context.Context, id int64) (*model.SameTime, error) {
 	sameTime := &model.SameTime{Id: id}
 	if err := s.DB.Where("is_show = ?", pasturePb.IsShow_Ok).First(sameTime).Error; err != nil {
-		if errors.Is(err, gorm.ErrRecordNotFound) {
-		}
+		return nil, xerr.WithStack(err)
 	}
 	return sameTime, nil
 }

+ 2 - 2
module/crontab/cow_cron.go

@@ -221,7 +221,7 @@ func (e *Entry) UpdateSameTime() error {
 	showDay := time.Now().Format(model.LayoutDate2)
 	for _, v := range calendarTypeList {
 		count := int64(0)
-		if err := e.DB.Model(new(model.CowSameTimeDetail)).
+		if err := e.DB.Model(new(model.EventCowSameTime)).
 			Where("same_time_type = ?", v.Value).
 			Where("status = ?", pasturePb.IsShow_No).
 			Count(&count); err != nil {
@@ -234,7 +234,7 @@ func (e *Entry) UpdateSameTime() error {
 		if err := e.DB.Model(new(model.Calendar)).
 			Where("calendar_type = ?", v.Value).
 			Where("show_day = ?", showDay).
-			Find(&isExist).Error; err != nil {
+			Count(&isExist).Error; err != nil {
 			continue
 		}
 		if isExist <= 0 {

+ 6 - 6
module/crontab/work_cron.go

@@ -36,8 +36,8 @@ func (e *Entry) GenerateCalendarBySameTimePlan(cowList []*model.Cow, sameTime *m
 	}
 
 	calendarList := make([]*model.Calendar, 0)
-	newSameTimeCowDetailList := make([]*model.CowSameTimeDetail, 0)
-	newCowMatingList := make([]*model.CowMating, 0)
+	newSameTimeCowDetailList := make([]*model.EventCowSameTime, 0)
+	newEventMatingList := make([]*model.EventMating, 0)
 	collateNodes := make([]*pasturePb.CollateNode, 0)
 	var _ = json.Unmarshal([]byte(sameTime.CollateNodes), &collateNodes)
 	nowTime := time.Now()
@@ -54,7 +54,7 @@ func (e *Entry) GenerateCalendarBySameTimePlan(cowList []*model.Cow, sameTime *m
 			calendarName = backend.CalendarTypeMap()[pasturePb.CalendarType_Mating]
 			calendarType = pasturePb.CalendarType_Mating
 			histCount = e.GetTowardTaiCowSum()
-			newCowMatingList = append(newCowMatingList, model.NewCowMatingList(newCowList, showDay)...)
+			newEventMatingList = append(newEventMatingList, model.NewEventMatingList(newCowList, showDay)...)
 		} else {
 			if collateNode.SameTimeType == pasturePb.SameTimeType_RnGH {
 				calendarName = backend.CalendarTypeMap()[pasturePb.CalendarType_RnGH]
@@ -93,7 +93,7 @@ func (e *Entry) GenerateCalendarBySameTimePlan(cowList []*model.Cow, sameTime *m
 			return xerr.WithStack(err)
 		}
 		// 创建牛只配种表
-		if err := tx.Create(newCowMatingList).Error; err != nil {
+		if err := tx.Create(newEventMatingList).Error; err != nil {
 			return xerr.WithStack(err)
 		}
 		return nil
@@ -117,7 +117,7 @@ func (e *Entry) getWorkOrderCalendar(name string) []*model.Calendar {
 // GetTowardSameTimeCowSum 获取历史未打激素牛只总数量
 func (e *Entry) GetTowardSameTimeCowSum(sameTimeId int64, sameTimeType pasturePb.SameTimeType_Kind) int64 {
 	res := int64(0)
-	if err := e.DB.Model(&model.CowSameTimeDetail{}).
+	if err := e.DB.Model(&model.EventCowSameTime{}).
 		Where("status = ?", pasturePb.IsShow_No).
 		Where("same_time_id = ?", sameTimeId).
 		Where("same_time_type = ?", sameTimeType).
@@ -130,7 +130,7 @@ func (e *Entry) GetTowardSameTimeCowSum(sameTimeId int64, sameTimeType pasturePb
 // GetTowardTaiCowSum 获取历史未配种牛只总数量
 func (e *Entry) GetTowardTaiCowSum() int64 {
 	res := int64(0)
-	if err := e.DB.Model(&model.CowMating{}).
+	if err := e.DB.Model(&model.EventMating{}).
 		Where("status = ?", pasturePb.IsShow_No).
 		Count(&res).Error; err != nil {
 		zaplog.Error("GetTowardTaiCowSum", zap.Any("err", err))