event_pregnant_check.go 7.2 KB

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