event_calving.go 5.8 KB

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