event_calving.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. package model
  2. import (
  3. "kpt-pasture/util"
  4. "time"
  5. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  6. )
  7. type EventCalving struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  13. EarNumber string `json:"earNumber"`
  14. Lact int32 `json:"lact"`
  15. DayAge int32 `json:"dayAge"`
  16. PlanDay int64 `json:"planDay"`
  17. RealityDay int64 `json:"realityDay"`
  18. EndDay int64 `json:"endDay"`
  19. Status pasturePb.IsShow_Kind `json:"status"`
  20. PenId int32 `json:"penId"`
  21. ChildNumber int32 `json:"childNumber"`
  22. BullNumber string `json:"bullNumber"`
  23. PregnancyAge int32 `json:"pregnancyAge"`
  24. CalvingLevel pasturePb.CalvingLevel_Kind `json:"calvingLevel"`
  25. OperationId int64 `json:"operationId"`
  26. OperationName string `json:"operationName"`
  27. DystociaReason pasturePb.DystociaReason_Kind `json:"dystociaReason"`
  28. IsInducingChildbirth pasturePb.IsShow_Kind `json:"isInducingChildbirth"`
  29. Remarks string `json:"remarks"`
  30. CreatedAt int64 `json:"created_at"`
  31. UpdatedAt int64 `json:"updated_at"`
  32. }
  33. func (e *EventCalving) TableName() string {
  34. return "event_calving"
  35. }
  36. func (e *EventCalving) Update(operationUser *SystemUser, req *pasturePb.EventCalving, cow *Cow) {
  37. if operationUser != nil {
  38. e.OperationId = operationUser.Id
  39. e.OperationName = operationUser.Name
  40. }
  41. e.RealityDay = int64(req.CalvingAt)
  42. e.DayAge = cow.DayAge
  43. e.PregnancyAge = cow.PregnancyAge
  44. e.CalvingLevel = req.CalvingLevel
  45. e.BullNumber = cow.LastBullNumber
  46. e.ChildNumber = req.ChildNumber
  47. e.Status = pasturePb.IsShow_Ok
  48. e.PenId = cow.PenId
  49. e.IsInducingChildbirth = req.IsInducingChildbirth
  50. e.Remarks = req.Remarks
  51. e.DystociaReason = req.DystociaReason
  52. }
  53. func NewEventCalving(pastureId int64, cow *Cow) *EventCalving {
  54. return &EventCalving{
  55. PastureId: pastureId,
  56. CowId: cow.Id,
  57. CowKind: cow.CowKind,
  58. CowType: cow.CowType,
  59. EarNumber: cow.EarNumber,
  60. PenId: cow.PenId,
  61. BullNumber: cow.LastBullNumber,
  62. Status: pasturePb.IsShow_No,
  63. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutTime)),
  64. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutTime)),
  65. }
  66. }
  67. func NewEventCalvingList(pastureId int64, cowList []*Cow) []*EventCalving {
  68. eventCalvingList := make([]*EventCalving, 0)
  69. for _, cow := range cowList {
  70. eventCalvingList = append(eventCalvingList, NewEventCalving(pastureId, cow))
  71. }
  72. return eventCalvingList
  73. }
  74. type EventCalvingList struct {
  75. EventCalving
  76. PenName string `json:"pen_name"`
  77. StaffMemberName string `json:"staff_member_name"`
  78. }
  79. type EventCalvingListSlice []*EventCalvingList
  80. func (e EventCalvingListSlice) ToPB(req []*CalvingCalf) []*pasturePb.LavingList {
  81. var list []*pasturePb.LavingList
  82. for _, item := range e {
  83. CalfItemList := make([]*pasturePb.CalfItem, 0)
  84. for _, v := range req {
  85. if v.CalvingId != item.Id {
  86. continue
  87. }
  88. CalfItemList = append(CalfItemList, &pasturePb.CalfItem{
  89. EarNumber: v.EarNumber,
  90. Sex: v.Sex,
  91. Weight: float32(v.BirthWeight) / 1000,
  92. IsAdoption: v.IsAdoption,
  93. IsLive: v.IsLive,
  94. CreatedAt: int32(v.CreatedAt),
  95. UpdatedAt: int32(v.UpdatedAt),
  96. PenId: v.PenId,
  97. Remarks: v.Remarks,
  98. MotherId: int32(v.MotherId),
  99. Id: int32(v.Id),
  100. })
  101. }
  102. list = append(list, &pasturePb.LavingList{
  103. Id: int32(item.Id),
  104. CowId: int32(item.CowId),
  105. Lact: item.Lact,
  106. PenId: item.PenId,
  107. PenName: item.PenName,
  108. CalvingAt: int32(item.PlanDay),
  109. ChildNumber: int32(item.ChildNumber),
  110. DaysPregnant: int32(item.PregnancyAge),
  111. OperationId: int32(item.OperationId),
  112. OperationName: item.OperationName,
  113. CalvingLevel: item.CalvingLevel,
  114. Remarks: item.Remarks,
  115. CreatedAt: int32(item.CreatedAt),
  116. UpdatedAt: int32(item.UpdatedAt),
  117. DystociaReason: item.DystociaReason,
  118. CalfItemList: CalfItemList,
  119. })
  120. }
  121. return list
  122. }
  123. type EventCalvingSlice []*EventCalving
  124. func (e EventCalvingSlice) ToPB() []*pasturePb.CalvingReportTable {
  125. res := make([]*pasturePb.CalvingReportTable, len(e))
  126. for i, v := range e {
  127. res[i] = &pasturePb.CalvingReportTable{
  128. StatisticMethod: v.Remarks,
  129. Twins: 0,
  130. TwinsRate: 0,
  131. Bulls: 0,
  132. BullsRate: 0,
  133. Cows: 0,
  134. CowsRate: 0,
  135. SurviveCount: 0,
  136. SurviveRate: 0,
  137. DieCount: 0,
  138. DieRate: 0,
  139. BullsDieCount: 0,
  140. BullsDieRate: 0,
  141. CowsDieCount: 0,
  142. CowsDieRate: 0,
  143. AdoptCount: 0,
  144. AdoptRate: 0,
  145. PrematureLaborCount: 0,
  146. PrematureLaborRate: 0,
  147. LateLaborCount: 0,
  148. LateLaborRate: 0,
  149. NormalLaborCount: 0,
  150. }
  151. }
  152. return res
  153. }