event_pregnant_check.go 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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 EventPregnantCheck struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. CowType pasturePb.CowType_Kind `json:"cowType"`
  12. PenId int32 `json:"penId"`
  13. PenName string `json:"penName"`
  14. DayAge int32 `json:"dayAge"`
  15. Lact int8 `json:"lact"`
  16. MatingAge int32 `json:"matingAge"`
  17. PlanDay int64 `json:"planDay"`
  18. RealityDay int64 `json:"realityDay"`
  19. EndDay int64 `json:"endDay"`
  20. PregnantCheckName string `json:"pregnantCheckName"`
  21. PregnantCheckResult pasturePb.PregnantCheckResult_Kind `json:"pregnantCheckResult"`
  22. PregnantCheckMethod pasturePb.PregnantCheckMethod_Kind `json:"pregnantCheckMethod"`
  23. BullId string `json:"bullId"`
  24. Status pasturePb.IsShow_Kind `json:"status"`
  25. OperationId int64 `json:"operationId"`
  26. OperationName string `json:"operationName"`
  27. MessageId int64 `json:"messageId"`
  28. MessageName string `json:"messageName"`
  29. Remarks string `json:"remarks"`
  30. CreatedAt int64 `json:"createdAt"`
  31. UpdatedAt int64 `json:"updatedAt"`
  32. }
  33. func (e *EventPregnantCheck) TableName() string {
  34. return "event_pregnant_check"
  35. }
  36. func (e *EventPregnantCheck) EventUpdate(
  37. pregnantCheckAt int64,
  38. pregnantCheckResult pasturePb.PregnantCheckResult_Kind,
  39. pregnantCheckMethod pasturePb.PregnantCheckMethod_Kind,
  40. operationUser, currentUser *SystemUser,
  41. remarks string,
  42. ) {
  43. e.RealityDay = pregnantCheckAt
  44. e.PregnantCheckResult = pregnantCheckResult
  45. e.PregnantCheckMethod = pregnantCheckMethod
  46. e.OperationId = operationUser.Id
  47. e.OperationName = operationUser.Name
  48. e.MessageId = currentUser.Id
  49. e.MessageName = currentUser.Name
  50. e.Remarks = remarks
  51. e.Status = pasturePb.IsShow_Ok
  52. }
  53. func NewEventPregnantCheck(pastureId int64, cow *Cow, penMap map[int32]*Pen, pregnantCheckName string) *EventPregnantCheck {
  54. penName := ""
  55. if pen, ok := penMap[cow.PenId]; ok {
  56. penName = pen.Name
  57. }
  58. return &EventPregnantCheck{
  59. PastureId: pastureId,
  60. CowId: cow.Id,
  61. CowType: cow.CowType,
  62. PenId: cow.PenId,
  63. PenName: penName,
  64. DayAge: cow.GetDayAge(),
  65. Lact: int8(cow.Lact),
  66. PlanDay: util.TimeParseLocalUnix(time.Now().Format(LayoutDate2)),
  67. EndDay: util.TimeParseLocalEndUnix(time.Now().Format(LayoutDate2)),
  68. PregnantCheckName: pregnantCheckName,
  69. BullId: cow.LastBullNumber,
  70. Status: pasturePb.IsShow_No,
  71. }
  72. }
  73. func NewEventPregnantCheckList(pastureId int64, cowList []*Cow, penMap map[int32]*Pen, pregnantCheckName string) []*EventPregnantCheck {
  74. res := make([]*EventPregnantCheck, len(cowList))
  75. for i, cow := range cowList {
  76. if cow.BreedStatus != pasturePb.BreedStatus_Breeding {
  77. continue
  78. }
  79. res[i] = NewEventPregnantCheck(pastureId, cow, penMap, pregnantCheckName)
  80. }
  81. return res
  82. }
  83. type EventPregnantCheck2 struct {
  84. Cow *Cow
  85. OperationUser *SystemUser
  86. CurrentUser *SystemUser
  87. PregnantCheckAt int64
  88. PregnantCheckMethod pasturePb.PregnantCheckMethod_Kind
  89. PregnantCheckResult pasturePb.PregnantCheckResult_Kind
  90. Remarks string
  91. }
  92. func NewEventPregnantCheck2(req *EventPregnantCheck2, penMap map[int32]*Pen) *EventPregnantCheck {
  93. penName := ""
  94. if pen, ok := penMap[req.Cow.PenId]; ok {
  95. penName = pen.Name
  96. }
  97. return &EventPregnantCheck{
  98. CowId: req.Cow.Id,
  99. CowType: req.Cow.CowType,
  100. PenId: req.Cow.PenId,
  101. PenName: penName,
  102. DayAge: req.Cow.GetDayAge(),
  103. Lact: int8(req.Cow.Lact),
  104. PlanDay: req.PregnantCheckAt,
  105. RealityDay: req.PregnantCheckAt,
  106. EndDay: req.PregnantCheckAt,
  107. PregnantCheckResult: req.PregnantCheckResult,
  108. PregnantCheckMethod: req.PregnantCheckMethod,
  109. PregnantCheckName: PregnantCheckForFirst,
  110. BullId: req.Cow.LastBullNumber,
  111. Status: pasturePb.IsShow_Ok,
  112. OperationId: req.OperationUser.Id,
  113. OperationName: req.OperationUser.Name,
  114. Remarks: req.Remarks,
  115. MessageId: req.CurrentUser.Id,
  116. MessageName: req.CurrentUser.Name,
  117. }
  118. }
  119. type EventPregnantCheckSlice []*EventPregnantCheck
  120. func (e EventPregnantCheckSlice) ToPB(
  121. pregnantCheckResultMap map[pasturePb.PregnantCheckResult_Kind]string,
  122. pregnantCheckMethodMap map[pasturePb.PregnantCheckMethod_Kind]string,
  123. ) []*pasturePb.SearchPregnantCheckList {
  124. result := make([]*pasturePb.SearchPregnantCheckList, len(e))
  125. for i, v := range e {
  126. result[i] = &pasturePb.SearchPregnantCheckList{
  127. Id: int32(v.Id),
  128. CowId: int32(v.CowId),
  129. DayAge: v.DayAge,
  130. Lact: int32(v.Lact),
  131. PregnantCheckAt: int32(v.PlanDay),
  132. PregnantCheckResult: v.PregnantCheckResult,
  133. PregnantCheckResultName: pregnantCheckResultMap[v.PregnantCheckResult],
  134. PregnantCheckMethod: v.PregnantCheckMethod,
  135. PregnantCheckMethodName: pregnantCheckMethodMap[v.PregnantCheckMethod],
  136. Remarks: v.Remarks,
  137. OperationId: int32(v.OperationId),
  138. OperationName: v.OperationName,
  139. CreatedAt: int32(v.CreatedAt),
  140. UpdatedAt: int32(v.UpdatedAt),
  141. }
  142. }
  143. return result
  144. }
  145. func (e EventPregnantCheckSlice) ToPB3(
  146. pregnantCheckResultMap map[pasturePb.PregnantCheckResult_Kind]string,
  147. pregnantCheckMethodMap map[pasturePb.PregnantCheckMethod_Kind]string,
  148. ) []*pasturePb.PregnancyReportTable {
  149. res := make([]*pasturePb.PregnancyReportTable, len(e))
  150. for i, v := range e {
  151. pregnancyCheckName := ""
  152. if checkName, ok := PregnantCheckNameKeyMap[v.PregnantCheckName]; ok {
  153. pregnancyCheckName = checkName
  154. }
  155. pregnantCheckMethodName := ""
  156. if checkMethodName, ok := pregnantCheckMethodMap[v.PregnantCheckMethod]; ok {
  157. pregnantCheckMethodName = checkMethodName
  158. }
  159. pregnantCheckResultName := ""
  160. if checkResultName, ok := pregnantCheckResultMap[v.PregnantCheckResult]; ok {
  161. pregnantCheckResultName = checkResultName
  162. }
  163. res[i] = &pasturePb.PregnancyReportTable{
  164. Id: int32(v.Id),
  165. CowId: int32(v.CowId),
  166. Lact: int32(v.Lact),
  167. PregnancyCheckName: pregnancyCheckName,
  168. PregnancyCheckAtFormat: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  169. MatingAge: v.MatingAge,
  170. PregnantCheckMethod: v.PregnantCheckMethod,
  171. PregnantCheckMethodName: pregnantCheckMethodName,
  172. PregnantCheckResult: v.PregnantCheckResult,
  173. PregnantCheckResultName: pregnantCheckResultName,
  174. OperationName: v.OperationName,
  175. }
  176. }
  177. return res
  178. }