event_calving.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. 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. DystociaReason pasturePb.DystociaReason_Kind `json:"dystociaReason"`
  27. IsInducingChildbirth pasturePb.IsShow_Kind `json:"isInducingChildbirth"`
  28. Remarks string `json:"remarks"`
  29. CreatedAt int64 `json:"created_at"`
  30. UpdatedAt int64 `json:"updated_at"`
  31. }
  32. func (e *EventCalving) TableName() string {
  33. return "event_calving"
  34. }
  35. func (e *EventCalving) Update(operationUser *SystemUser, req *pasturePb.EventCalving, cow *Cow) {
  36. if operationUser != nil {
  37. e.OperationId = operationUser.Id
  38. e.OperationName = operationUser.Name
  39. }
  40. e.RealityDay = int64(req.CalvingAt)
  41. e.DayAge = cow.DayAge
  42. e.PregnancyAge = cow.PregnancyAge
  43. e.CalvingLevel = req.CalvingLevel
  44. e.BullNumber = cow.LastBullNumber
  45. e.ChildNumber = req.ChildNumber
  46. e.Status = pasturePb.IsShow_Ok
  47. e.PenId = cow.PenId
  48. e.IsInducingChildbirth = req.IsInducingChildbirth
  49. e.Remarks = req.Remarks
  50. e.DystociaReason = req.DystociaReason
  51. }
  52. func NewEventCalving(cow *Cow) *EventCalving {
  53. return &EventCalving{
  54. CowId: cow.Id,
  55. CowKind: cow.CowKind,
  56. CowType: cow.CowType,
  57. EarNumber: cow.EarNumber,
  58. PenId: cow.PenId,
  59. BullNumber: cow.LastBullNumber,
  60. Status: pasturePb.IsShow_No,
  61. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutTime)),
  62. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutTime)),
  63. }
  64. }
  65. func NewEventCalvingList(cowList []*Cow) []*EventCalving {
  66. eventCalvingList := make([]*EventCalving, 0)
  67. for _, cow := range cowList {
  68. eventCalvingList = append(eventCalvingList, NewEventCalving(cow))
  69. }
  70. return eventCalvingList
  71. }
  72. type EventCalvingList struct {
  73. EventCalving
  74. PenName string `json:"pen_name"`
  75. StaffMemberName string `json:"staff_member_name"`
  76. }
  77. type EventCalvingListSlice []*EventCalvingList
  78. func (e EventCalvingListSlice) ToPB(req []*CalvingCalf) []*pasturePb.LavingList {
  79. var list []*pasturePb.LavingList
  80. for _, item := range e {
  81. CalfItemList := make([]*pasturePb.CalfItem, 0)
  82. for _, v := range req {
  83. if v.CalvingId != item.Id {
  84. continue
  85. }
  86. CalfItemList = append(CalfItemList, &pasturePb.CalfItem{
  87. EarNumber: v.EarNumber,
  88. Sex: v.Sex,
  89. Weight: float32(v.BirthWeight) / 1000,
  90. IsAdoption: v.IsAdoption,
  91. IsLive: v.IsLive,
  92. CreatedAt: int32(v.CreatedAt),
  93. UpdatedAt: int32(v.UpdatedAt),
  94. PenId: v.PenId,
  95. Remarks: v.Remarks,
  96. MotherId: int32(v.MotherId),
  97. Id: int32(v.Id),
  98. })
  99. }
  100. list = append(list, &pasturePb.LavingList{
  101. Id: int32(item.Id),
  102. CowId: int32(item.CowId),
  103. Lact: item.Lact,
  104. PenId: item.PenId,
  105. PenName: item.PenName,
  106. CalvingAt: int32(item.PlanDay),
  107. ChildNumber: int32(item.ChildNumber),
  108. DaysPregnant: int32(item.PregnancyAge),
  109. OperationId: int32(item.OperationId),
  110. OperationName: item.OperationName,
  111. CalvingLevel: item.CalvingLevel,
  112. Remarks: item.Remarks,
  113. CreatedAt: int32(item.CreatedAt),
  114. UpdatedAt: int32(item.UpdatedAt),
  115. DystociaReason: item.DystociaReason,
  116. CalfItemList: CalfItemList,
  117. })
  118. }
  119. return list
  120. }
  121. type EventCalvingSlice []*EventCalving
  122. func (e EventCalvingSlice) ToPB() []*pasturePb.CalvingReportTable {
  123. res := make([]*pasturePb.CalvingReportTable, len(e))
  124. for i, v := range e {
  125. res[i] = &pasturePb.CalvingReportTable{
  126. StatisticMethod: v.Remarks,
  127. Twins: 0,
  128. TwinsRate: 0,
  129. Bulls: 0,
  130. BullsRate: 0,
  131. Cows: 0,
  132. CowsRate: 0,
  133. SurviveCount: 0,
  134. SurviveRate: 0,
  135. DieCount: 0,
  136. DieRate: 0,
  137. BullsDieCount: 0,
  138. BullsDieRate: 0,
  139. CowsDieCount: 0,
  140. CowsDieRate: 0,
  141. AdoptCount: 0,
  142. AdoptRate: 0,
  143. PrematureLaborCount: 0,
  144. PrematureLaborRate: 0,
  145. LateLaborCount: 0,
  146. LateLaborRate: 0,
  147. NormalLaborCount: 0,
  148. }
  149. }
  150. return res
  151. }