event_mating.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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 EventMating struct {
  8. Id int64 `json:"id"`
  9. PastureId int64 `json:"pastureId"`
  10. CowId int64 `json:"cowId"`
  11. DayAge int32 `json:"dayAge"`
  12. Lact int32 `json:"lact"`
  13. PenId int32 `json:"penId"`
  14. PenName string `json:"penName"`
  15. CowType pasturePb.CowType_Kind `json:"cowType"`
  16. CowKind pasturePb.CowKind_Kind `json:"cowKind"`
  17. CalvingAge int32 `json:"calvingAge"`
  18. PlanDay int64 `json:"planDay"`
  19. EndDay int64 `json:"endDay"`
  20. CalvingAt int64 `json:"calvingAt"`
  21. RealityDay int64 `json:"realityDay"`
  22. Status pasturePb.IsShow_Kind `json:"status"`
  23. MatingTimes int32 `json:"matingTimes"`
  24. MatingResult pasturePb.MatingResult_Kind `json:"matingResult"`
  25. MatingResultAt int64 `json:"matingResultAt"`
  26. ExposeEstrusType pasturePb.ExposeEstrusType_Kind `json:"exposeEstrusType"`
  27. FrozenSemenNumber string `json:"frozenSemenNumber"`
  28. OperationId int64 `json:"operationId"`
  29. OperationName string `json:"operationName"`
  30. MessageId int64 `json:"messageId"`
  31. MessageName string `json:"messageName"`
  32. Remarks string `json:"remarks"`
  33. EventEstrusId int64 `json:"eventEstrusId"`
  34. CreatedAt int64 `json:"createdAt"`
  35. UpdatedAt int64 `json:"updatedAt"`
  36. }
  37. func (e *EventMating) TableName() string {
  38. return "event_mating"
  39. }
  40. func (e *EventMating) EventUpdate(matingAt int64, bullNumber string, isReMating bool, operationUser, currentUser *SystemUser) {
  41. e.MatingResult = pasturePb.MatingResult_Unknown
  42. e.Status = pasturePb.IsShow_Ok
  43. e.RealityDay = matingAt
  44. e.FrozenSemenNumber = bullNumber
  45. e.OperationName = operationUser.Name
  46. e.OperationId = operationUser.Id
  47. e.MessageName = currentUser.Name
  48. e.MessageId = currentUser.Id
  49. if !isReMating {
  50. e.MatingTimes += 1
  51. }
  52. }
  53. // EventReMatingUpdate 复配更新
  54. func (e *EventMating) EventReMatingUpdate(matingAt int64) {
  55. e.MatingResult = pasturePb.MatingResult_ReMatch
  56. e.Status = pasturePb.IsShow_Ok
  57. e.MatingResultAt = matingAt
  58. }
  59. // EventMatingResultUpdate 配种结果更新
  60. func (e *EventMating) EventMatingResultUpdate(matingResult pasturePb.MatingResult_Kind, resultAt int64) {
  61. e.MatingResult = matingResult
  62. e.MatingResultAt = resultAt
  63. }
  64. // IsReMating 判断是不是复配
  65. func (e *EventMating) IsReMating(cow *Cow, matingAt int64) bool {
  66. lastMatingAt := time.Unix(cow.LastMatingAt, 0)
  67. currentMatingAt := time.Unix(matingAt, 0)
  68. daysBetween := util.DaysBetween(currentMatingAt.Unix(), lastMatingAt.Unix())
  69. if (daysBetween == 1 || daysBetween == 0) && e.Status == pasturePb.IsShow_Ok && e.MatingResult == pasturePb.MatingResult_Unknown {
  70. return true
  71. }
  72. return false
  73. }
  74. // IsMatingUpdate 判断是不是更新配种信息
  75. func (e *EventMating) IsMatingUpdate() bool {
  76. if e.Status == pasturePb.IsShow_No && e.MatingResult == pasturePb.MatingResult_Unknown {
  77. return true
  78. }
  79. return false
  80. }
  81. // IsEmptyMating 判断上次配种结果是不是空怀
  82. func (e *EventMating) IsEmptyMating(cow *Cow, matingAt int64) bool {
  83. lastMatingAt := time.Unix(cow.LastMatingAt, 0)
  84. currentMatingAt := time.Unix(matingAt, 0)
  85. daysBetween := util.DaysBetween(currentMatingAt.Unix(), lastMatingAt.Unix())
  86. if (e.MatingResult == pasturePb.MatingResult_Unknown || e.MatingResult == pasturePb.MatingResult_ReMatch) && daysBetween >= 2 {
  87. return true
  88. }
  89. return false
  90. }
  91. func NewEventMating(pastureId int64, cow *Cow, planDay int64, exposeEstrusType pasturePb.ExposeEstrusType_Kind) *EventMating {
  92. return &EventMating{
  93. PastureId: pastureId,
  94. CowId: cow.Id,
  95. Lact: cow.Lact,
  96. PenId: cow.PenId,
  97. PenName: cow.PenName,
  98. CowType: cow.CowType,
  99. CowKind: cow.CowKind,
  100. CalvingAt: cow.LastMatingAt,
  101. PlanDay: planDay,
  102. EndDay: planDay,
  103. MatingResult: pasturePb.MatingResult_Unknown,
  104. ExposeEstrusType: exposeEstrusType,
  105. Status: pasturePb.IsShow_No,
  106. }
  107. }
  108. // NewEventMatingNaturalEstrus 自然发情的牛只
  109. func NewEventMatingNaturalEstrus(cow *Cow, req *pasturePb.EventMating, currentUser *SystemUser) *EventMating {
  110. return &EventMating{
  111. PastureId: currentUser.PastureId,
  112. CowId: cow.Id,
  113. Lact: cow.Lact,
  114. DayAge: cow.GetDayAge(),
  115. CowType: cow.CowType,
  116. CowKind: cow.CowKind,
  117. CalvingAt: cow.LastMatingAt,
  118. PlanDay: int64(req.MatingAt),
  119. RealityDay: int64(req.MatingAt),
  120. EndDay: int64(req.MatingAt),
  121. MatingResult: pasturePb.MatingResult_Unknown,
  122. ExposeEstrusType: pasturePb.ExposeEstrusType_Natural_Estrus,
  123. Status: pasturePb.IsShow_Ok,
  124. OperationId: int64(req.OperationId),
  125. OperationName: req.OperationName,
  126. MessageId: currentUser.Id,
  127. MessageName: currentUser.Name,
  128. FrozenSemenNumber: req.FrozenSemenNumber,
  129. Remarks: req.Remarks,
  130. MatingTimes: cow.MatingTimes + 1,
  131. }
  132. }
  133. // NewEventMatingList 同情配种
  134. func NewEventMatingList(pastureId int64, cowList []*Cow, planDay int64, exposeEstrusType pasturePb.ExposeEstrusType_Kind) []*EventMating {
  135. var matingList []*EventMating
  136. for _, cow := range cowList {
  137. matingList = append(matingList, NewEventMating(pastureId, cow, planDay, exposeEstrusType))
  138. }
  139. return matingList
  140. }
  141. type EventMatingSlice []*EventMating
  142. func (e EventMatingSlice) ToPB(exposeEstrusTypeMap map[pasturePb.ExposeEstrusType_Kind]string) []*pasturePb.SearchMatingList {
  143. res := make([]*pasturePb.SearchMatingList, len(e))
  144. for i, v := range e {
  145. res[i] = &pasturePb.SearchMatingList{
  146. Id: int32(v.Id),
  147. CowId: int32(v.CowId),
  148. DayAge: int32(v.DayAge),
  149. Lact: int32(v.Lact),
  150. CalvingAge: v.CalvingAge,
  151. PlanDay: time.Unix(v.PlanDay, 0).Format(LayoutDate2),
  152. RealityDay: time.Unix(v.RealityDay, 0).Format(LayoutDate2),
  153. ExposeEstrusType: v.ExposeEstrusType,
  154. ExposeEstrusTypeName: exposeEstrusTypeMap[v.ExposeEstrusType],
  155. FrozenSemenNumber: v.FrozenSemenNumber,
  156. Remarks: v.Remarks,
  157. OperationId: int32(v.OperationId),
  158. OperationName: v.OperationName,
  159. CreatedAt: int32(v.CreatedAt),
  160. UpdatedAt: int32(v.UpdatedAt),
  161. }
  162. }
  163. return res
  164. }
  165. type CowMatingBody struct {
  166. Id int64 `json:"id"`
  167. CowId int64 `json:"cowId"`
  168. BreedStatus pasturePb.BreedStatus_Kind `json:"breedStatus"`
  169. BreedStatusName string `json:"breedStatusName"`
  170. CowType pasturePb.CowType_Kind `json:"cowType"`
  171. CowTypeName string `json:"cowTypeName"`
  172. PenId int32 `json:"penId"`
  173. PenName string `json:"penName"`
  174. Lact int32 `json:"lact"`
  175. CalvingAge int32 `json:"calvingAge"`
  176. AbortionAge int32 `json:"abortionAge"`
  177. DayAge int32 `json:"dayAge"`
  178. Status pasturePb.IsShow_Kind `json:"status"`
  179. }
  180. type CowMatingBodySlice []*CowMatingBody
  181. func (s CowMatingBodySlice) ToPB(
  182. cowTypeMap map[pasturePb.CowType_Kind]string,
  183. breedStatusMap map[pasturePb.BreedStatus_Kind]string,
  184. penMap map[int32]*Pen,
  185. ) []*CowMatingBody {
  186. res := make([]*CowMatingBody, len(s))
  187. for i, v := range s {
  188. res[i] = &CowMatingBody{
  189. Id: v.Id,
  190. CowId: v.CowId,
  191. CowType: v.CowType,
  192. CowTypeName: cowTypeMap[v.CowType],
  193. BreedStatus: v.BreedStatus,
  194. BreedStatusName: breedStatusMap[v.BreedStatus],
  195. PenName: penMap[v.PenId].Name,
  196. PenId: v.PenId,
  197. Lact: v.Lact,
  198. CalvingAge: v.CalvingAge,
  199. AbortionAge: v.AbortionAge,
  200. DayAge: v.DayAge,
  201. Status: v.Status,
  202. }
  203. }
  204. return res
  205. }
  206. type MatingTimelyChart struct {
  207. CalvingAge int32 `json:"calvingAge"`
  208. RealityDay string `json:"realityDay"`
  209. LactGroup string `json:"lactGroup"`
  210. }
  211. func (e EventMatingSlice) ToPB2() []*pasturePb.CowList {
  212. res := make([]*pasturePb.CowList, len(e))
  213. for i, v := range e {
  214. calvingAt, matingAtFormat := "", ""
  215. if v.CalvingAt > 0 {
  216. calvingAt = time.Unix(v.CalvingAt, 0).Format(LayoutDate2)
  217. }
  218. if v.RealityDay > 0 {
  219. matingAtFormat = time.Unix(v.RealityDay, 0).Format(LayoutDate2)
  220. }
  221. res[i] = &pasturePb.CowList{
  222. CowId: int32(v.CowId),
  223. DayAge: int32(v.DayAge),
  224. CalvingAge: v.CalvingAge,
  225. MatingAtFormat: matingAtFormat,
  226. CalvingAtFormat: calvingAt,
  227. Lact: int32(v.Lact),
  228. }
  229. }
  230. return res
  231. }
  232. type MatingTimelyResponse struct {
  233. Code int32 `json:"code"`
  234. Message string `json:"message"`
  235. Data *MatingTimelyData `json:"data"`
  236. }
  237. type MatingTimelyData struct {
  238. CowList []*pasturePb.CowList `json:"cowList"`
  239. Chart *CowMatingChart `json:"chart"`
  240. }
  241. type CowMatingChart struct {
  242. Lact0 [][]string `json:"lact0"`
  243. Lact1 [][]string `json:"lact1"`
  244. Lact2 [][]string `json:"lact2"`
  245. Lact3 [][]string `json:"lact3"`
  246. }
  247. // MultiFactorPregnancyRateResponse 多维度受胎率
  248. type MultiFactorPregnancyRateResponse struct {
  249. Code int32 `json:"code"`
  250. Message string `json:"message"`
  251. Data *MultiFactorPregnancyRateData `json:"data"`
  252. }
  253. // MultiFactorPregnancyRateList 多维度受胎率分析
  254. type MultiFactorPregnancyRateList struct {
  255. StatisticMethod1 string `json:"statisticMethod1"` // 统计方式名称1 (月度、品种)
  256. StatisticMethod2 string `json:"statisticMethod2"` // 统计方式名称2 (月度、品种)
  257. PregnantRate float32 `json:"pregnantRate"` // 受胎率%(怀孕数 / 怀孕数 + 空怀数)
  258. PregnantCount int32 `json:"pregnantCount"` // 怀孕总数
  259. EmptyPregnantCount int32 `json:"emptyPregnantCount"` // 空怀数
  260. OtherCount int32 `json:"otherCount"` // 其他数 (配种后结果未知的个数,小于等于三次配种后,尚未孕检已经淘汰的个数)
  261. AbortionCount int32 `json:"abortionCount"` // 流产数 (已经怀孕后流产的个数)
  262. TotalCount int32 `json:"totalCount"` // 合计( 怀孕总数+空怀数+其他数)
  263. SpcRate float32 `json:"spcRate"` // spc(1 / 受胎率)
  264. Months string `json:"months"` // 月份
  265. OperationName string `json:"operationName"` // 配种员名称
  266. Bull string `json:"bull"` // 公牛
  267. Lact string `json:"lact"` // 胎次
  268. MatingTimes string `json:"matingTimes"` // 配次
  269. ExposeEstrusType string `json:"exposeEstrusType"` // 发情揭发方式
  270. Week string `json:"week"` // 周
  271. }
  272. type MultiFactorPregnancyRateData struct {
  273. Total int32 `json:"total"`
  274. PageSize int32 `json:"pageSize"`
  275. Page int32 `json:"page"`
  276. List []*MultiFactorPregnancyRateList `json:"list"`
  277. Chart *MultiFactorPregnancyRateChart `json:"chart"`
  278. }
  279. type MultiFactorPregnancyRateChart struct {
  280. Header []string `json:"header"` // 标题头
  281. PregnantRateMap map[string]map[string]string `json:"pregnantRateMap"`
  282. KepMap []string `json:"kepMap"`
  283. }