analysis.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. package backend
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "kpt-pasture/util"
  7. "net/http"
  8. "strings"
  9. "time"
  10. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  11. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  12. "gitee.com/xuyiping_admin/pkg/xerr"
  13. "go.uber.org/zap"
  14. )
  15. // GrowthCurve 生长曲线 获取图表数据
  16. func (s *StoreEntry) GrowthCurve(ctx context.Context, req *pasturePb.SearchGrowthCurvesRequest) (*pasturePb.GrowthCurvesResponse, error) {
  17. userModel, err := s.GetUserModel(ctx)
  18. if err != nil {
  19. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  20. }
  21. // 查询数据
  22. cowList := make([]*model.Cow, 0)
  23. pref := s.DB.Model(new(model.Cow)).
  24. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  25. Where("pasture_id = ?", userModel.AppPasture.Id)
  26. if req.GetCowId() != "" {
  27. pref.Where("id IN ?", strings.Split(req.CowId, ","))
  28. }
  29. if len(req.BirthDate) == 2 && req.BirthDate[0] != "" && req.BirthDate[1] != "" {
  30. t0, _ := time.Parse(time.RFC3339, req.BirthDate[0])
  31. t1, _ := time.Parse(time.RFC3339, req.BirthDate[1])
  32. pref.Where("birth_at BETWEEN ? AND ?", t0.Unix(), t1.Unix()+86399)
  33. }
  34. if err = pref.Find(&cowList).Error; err != nil {
  35. return nil, err
  36. }
  37. penList, err := s.GetPenList(ctx, userModel.AppPasture.Id)
  38. if err != nil {
  39. return nil, xerr.WithStack(err)
  40. }
  41. // 计算图表数据
  42. chartsList := &pasturePb.Charts{
  43. CowId: make([]int32, 0),
  44. Weight: make([]float32, 0),
  45. DayAge: make([]int32, 0),
  46. }
  47. cowData := make([]*pasturePb.CowList, 0)
  48. for _, cow := range cowList {
  49. currentWeight := float32(cow.CurrentWeight) / 100
  50. penName := ""
  51. for _, v := range penList {
  52. if cow.PenId != v.Id {
  53. continue
  54. }
  55. penName = v.Name
  56. }
  57. cowData = append(cowData, &pasturePb.CowList{
  58. CowId: int32(cow.Id),
  59. EarNumber: cow.EarNumber,
  60. DayAge: cow.GetDayAge(),
  61. PenName: penName,
  62. CurrentWeight: currentWeight,
  63. BirthAt: int32(cow.BirthAt),
  64. BirthWeight: float32(cow.BirthWeight) / 100,
  65. LastWeightAt: int32(cow.LastWeightAt),
  66. DailyWeightGain: float32(cow.GetDayWeight() / 100),
  67. AverageDailyWeightGain: float32(cow.GetAverageDailyWeight() / 100),
  68. })
  69. chartsList.CowId = append(chartsList.CowId, int32(cow.Id))
  70. chartsList.Weight = append(chartsList.Weight, currentWeight)
  71. chartsList.DayAge = append(chartsList.DayAge, cow.GetDayAge())
  72. }
  73. // 返回数据
  74. return &pasturePb.GrowthCurvesResponse{
  75. Code: http.StatusOK,
  76. Msg: "success",
  77. Data: &pasturePb.GrowthCurveData{
  78. Table: cowData,
  79. Charts: chartsList,
  80. },
  81. }, nil
  82. }
  83. func (s *StoreEntry) WeightRange(ctx context.Context, req *pasturePb.WeightRangeRequest) (*pasturePb.WeightRangeResponse, error) {
  84. userModel, err := s.GetUserModel(ctx)
  85. if err != nil {
  86. return nil, xerr.WithStack(err)
  87. }
  88. cowWeightRange := make([]*model.CowWeightRange, 0)
  89. prefix := s.DB.Model(new(model.Cow)).
  90. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  91. Where("pasture_id = ?", userModel.AppPasture.Id)
  92. if req.CowKind > 0 {
  93. prefix.Where("cow_kind = ?", req.CowKind)
  94. }
  95. if err = prefix.Select(`
  96. CASE
  97. WHEN current_weight BETWEEN 0 AND 50000 THEN '0-50'
  98. WHEN current_weight BETWEEN 50001 AND 100000 THEN '51-100'
  99. WHEN current_weight BETWEEN 100001 AND 150000 THEN '101-150'
  100. WHEN current_weight BETWEEN 150001 AND 200000 THEN '151-200'
  101. WHEN current_weight BETWEEN 200001 AND 250000 THEN '201-250'
  102. WHEN current_weight BETWEEN 250001 AND 300000 THEN '251-300'
  103. WHEN current_weight BETWEEN 300001 AND 350000 THEN '301-350'
  104. WHEN current_weight BETWEEN 350001 AND 400000 THEN '351-400'
  105. WHEN current_weight BETWEEN 400001 AND 450000 THEN '401-450'
  106. WHEN current_weight BETWEEN 450001 AND 500000 THEN '451-500'
  107. WHEN current_weight BETWEEN 500001 AND 550000 THEN '500-550'
  108. WHEN current_weight BETWEEN 550001 AND 600000 THEN '551-600'
  109. WHEN current_weight BETWEEN 600001 AND 650000 THEN '601-650'
  110. WHEN current_weight BETWEEN 650001 AND 700000 THEN '651-700'
  111. WHEN current_weight BETWEEN 700001 AND 750000 THEN '701-750'
  112. ELSE '750+'
  113. END AS weight_range,
  114. COUNT(*) AS count `,
  115. ).Group("weight_range").Order("MIN(current_weight)").Find(&cowWeightRange).Error; err != nil {
  116. return nil, err
  117. }
  118. if len(cowWeightRange) == 0 {
  119. return &pasturePb.WeightRangeResponse{
  120. Code: http.StatusOK,
  121. Msg: "ok",
  122. Data: &pasturePb.WeightRangeData{
  123. CowList: make([]*pasturePb.CowList, 0),
  124. WeightBarChart: &pasturePb.WeightBarChart{
  125. Header: make([]string, 0),
  126. Data: make([]int32, 0),
  127. },
  128. },
  129. }, nil
  130. }
  131. header := make([]string, 0)
  132. data := make([]int32, 0)
  133. for _, v := range cowWeightRange {
  134. header = append(header, v.WeightRange)
  135. data = append(data, v.Count)
  136. }
  137. // 牛只详情列表
  138. pref := s.DB.Model(new(model.Cow)).
  139. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  140. Where("pasture_id = ?", userModel.AppPasture.Id)
  141. if req.CowKind > 0 {
  142. pref.Where("cow_kind = ?", req.CowKind)
  143. }
  144. cowList := make([]*model.Cow, 0)
  145. if req.MinWeight >= 0 && req.MaxWeight >= 0 && req.MinWeight < req.MaxWeight {
  146. pref.Where("current_weight BETWEEN ? AND ? ", req.MinWeight*1000, req.MaxWeight*1000)
  147. }
  148. if err = pref.Find(&cowList).Error; err != nil {
  149. return nil, err
  150. }
  151. penMap := s.PenMap(ctx, userModel.AppPasture.Id)
  152. return &pasturePb.WeightRangeResponse{
  153. Code: http.StatusOK,
  154. Msg: "ok",
  155. Data: &pasturePb.WeightRangeData{
  156. CowList: model.CowSlice(cowList).WeightRangeToPB(penMap),
  157. WeightBarChart: &pasturePb.WeightBarChart{
  158. Header: header,
  159. Data: data,
  160. },
  161. },
  162. }, nil
  163. }
  164. func (s *StoreEntry) MatingTimely(ctx context.Context, req *pasturePb.MatingTimelyRequest) (*model.MatingTimelyResponse, error) {
  165. userModel, err := s.GetUserModel(ctx)
  166. if err != nil {
  167. return nil, xerr.WithStack(err)
  168. }
  169. matingTimelyChart := make([]*model.MatingTimelyChart, 0)
  170. pastureWhereSql := fmt.Sprintf(" AND pasture_id = %d", userModel.AppPasture.Id)
  171. sql := `SELECT calving_age,cow_type, DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') AS reality_day, lact_group
  172. FROM (
  173. SELECT calving_age, cow_type,reality_day, '0' AS lact_group
  174. FROM event_mating
  175. WHERE lact = 0 AND status = 1 ` + pastureWhereSql + `
  176. UNION ALL
  177. SELECT calving_age,cow_type, reality_day, '1' AS lact_group
  178. FROM event_mating
  179. WHERE lact = 1 AND status = 1 ` + pastureWhereSql + `
  180. UNION ALL
  181. SELECT calving_age,cow_type, reality_day, '2' AS lact_group
  182. FROM event_mating
  183. WHERE lact = 2 AND status = 1 ` + pastureWhereSql + `
  184. UNION ALL
  185. SELECT calving_age, cow_type, reality_day, '3+' AS lact_group
  186. FROM event_mating
  187. WHERE lact >= 3 AND status = 1 ` + pastureWhereSql + `
  188. ) AS subquery WHERE 1 = 1 `
  189. whereSql := ""
  190. if req.CowType > 0 {
  191. whereSql += fmt.Sprintf("AND cow_type = %d ", req.CowType)
  192. }
  193. if req.StartDayAt > 0 && req.EndDayAt > 0 {
  194. whereSql += fmt.Sprintf("AND reality_day BETWEEN %d AND %d", req.StartDayAt, req.EndDayAt)
  195. }
  196. if err = s.DB.Raw(fmt.Sprintf("%s %s", sql, whereSql)).Find(&matingTimelyChart).Error; err != nil {
  197. return nil, err
  198. }
  199. chart := &model.CowMatingChart{
  200. Lact0: make([][]string, 0),
  201. Lact1: make([][]string, 0),
  202. Lact2: make([][]string, 0),
  203. Lact3: make([][]string, 0),
  204. }
  205. if len(matingTimelyChart) == 0 {
  206. return &model.MatingTimelyResponse{
  207. Code: http.StatusOK,
  208. Msg: "ok",
  209. Data: &model.MatingTimelyData{
  210. CowList: make([]*pasturePb.CowList, 0),
  211. Chart: chart,
  212. },
  213. }, nil
  214. }
  215. for _, v := range matingTimelyChart {
  216. t, _ := time.Parse(model.LayoutDate2, v.RealityDay)
  217. switch v.LactGroup {
  218. case "0":
  219. chart.Lact0 = append(chart.Lact0, []string{fmt.Sprintf("%d", t.Day()), fmt.Sprintf("%d", v.CalvingAge), v.RealityDay})
  220. case "1":
  221. chart.Lact1 = append(chart.Lact1, []string{fmt.Sprintf("%d", t.Day()), fmt.Sprintf("%d", v.CalvingAge), v.RealityDay})
  222. case "2":
  223. chart.Lact2 = append(chart.Lact2, []string{fmt.Sprintf("%d", t.Day()), fmt.Sprintf("%d", v.CalvingAge), v.RealityDay})
  224. case "3+":
  225. chart.Lact3 = append(chart.Lact3, []string{fmt.Sprintf("%d", t.Day()), fmt.Sprintf("%d", v.CalvingAge), v.RealityDay})
  226. }
  227. }
  228. // 牛只详情列表
  229. eventMatingList := make([]*model.EventMating, 0)
  230. pref := s.DB.Model(new(model.EventMating)).
  231. Where("status = ?", pasturePb.IsShow_Ok)
  232. if req.CowType > 0 {
  233. pref.Where("cow_type = ?", req.CowType)
  234. }
  235. if req.StartDayAt > 0 && req.EndDayAt > 0 {
  236. pref.Where("reality_day BETWEEN ? AND ?", req.StartDayAt, req.EndDayAt)
  237. }
  238. if err = pref.Find(&eventMatingList).Error; err != nil {
  239. return nil, err
  240. }
  241. return &model.MatingTimelyResponse{
  242. Code: http.StatusOK,
  243. Msg: "ok",
  244. Data: &model.MatingTimelyData{
  245. CowList: model.EventMatingSlice(eventMatingList).ToPB2(),
  246. Chart: chart,
  247. },
  248. }, nil
  249. }
  250. func (s *StoreEntry) PenWeight(ctx context.Context, req *pasturePb.PenWeightRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PenWeightResponse, error) {
  251. userModel, err := s.GetUserModel(ctx)
  252. if err != nil {
  253. return nil, xerr.WithStack(err)
  254. }
  255. penWeightList := make([]*model.PenWeight, 0)
  256. pref := s.DB.Model(new(model.Cow)).
  257. Select(`
  258. pen_id,
  259. CEILING(AVG(current_weight) / 1000 ) AS avg_weight,
  260. CEILING(SUM(current_weight) / 1000 ) AS all_weight,
  261. COUNT(*) AS cow_count`,
  262. ).
  263. Where("pasture_id = ?", userModel.AppPasture.Id).
  264. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission)
  265. if len(req.PenId) > 0 && req.BarId <= 0 {
  266. pref.Where("pen_id IN ?", req.PenId)
  267. }
  268. if err = pref.Group("pen_id").
  269. Order("pen_id").
  270. Find(&penWeightList).Error; err != nil {
  271. return nil, err
  272. }
  273. chart := &pasturePb.PenWeightChart{
  274. Header: make([]string, 0),
  275. AllWeight: make([]int32, 0),
  276. AvgWeight: make([]int32, 0),
  277. CowCount: make([]int32, 0),
  278. }
  279. if len(penWeightList) <= 0 {
  280. return &pasturePb.PenWeightResponse{
  281. Code: http.StatusOK,
  282. Msg: "ok",
  283. Data: &pasturePb.PenWeightData{
  284. CowList: make([]*pasturePb.CowList, 0),
  285. Chart: chart,
  286. },
  287. }, nil
  288. }
  289. cowList := make([]*model.Cow, 0)
  290. var count int64 = 0
  291. prefList := s.DB.Model(new(model.Cow)).
  292. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission)
  293. if len(req.PenId) <= 0 && req.BarId > 0 {
  294. prefList.Where("pen_id IN ?", []int32{req.BarId})
  295. } else {
  296. prefList.Where("pen_id IN ?", req.PenId)
  297. }
  298. if err = prefList.Count(&count).Limit(int(pagination.PageSize)).
  299. Offset(int(pagination.PageOffset)).Order("pen_id").
  300. Find(&cowList).Error; err != nil {
  301. return nil, xerr.WithStack(err)
  302. }
  303. penMap := s.PenMap(ctx, userModel.AppPasture.Id)
  304. return &pasturePb.PenWeightResponse{
  305. Code: http.StatusOK,
  306. Msg: "ok",
  307. Data: &pasturePb.PenWeightData{
  308. CowList: model.CowSlice(cowList).ToPB2(penMap, penWeightList),
  309. Total: int32(count),
  310. Page: pagination.Page,
  311. PageSize: pagination.PageSize,
  312. Chart: model.PenWeightSlice(penWeightList).ToPB(penMap),
  313. },
  314. }, nil
  315. }
  316. func (s *StoreEntry) AbortionRate(ctx context.Context, req *pasturePb.AbortionRateRequest) (*pasturePb.AbortionRateResponse, error) {
  317. userModel, err := s.GetUserModel(ctx)
  318. if err != nil {
  319. return nil, xerr.WithStack(err)
  320. }
  321. dayTimeList, err := util.GetMonthsInRange(req.StartDayTime, req.EndDayTime)
  322. if err != nil {
  323. return nil, xerr.WithStack(err)
  324. }
  325. lastDayForMonth := make([]string, 0)
  326. for _, v := range dayTimeList {
  327. lastDayTime, _ := util.GetLastDayOfMonth(v)
  328. lastDayForMonth = append(lastDayForMonth, lastDayTime)
  329. }
  330. // 历史每月怀孕牛头数量
  331. cowPregnantMonthList := make([]*model.CowPregnantMonth, 0)
  332. pref := s.DB.Model(new(model.CowPregnant)).
  333. Select(`
  334. COUNT(cow_id) AS cow_count,
  335. DATE_FORMAT(FROM_UNIXTIME(created_at),'%Y-%m') as month`,
  336. ).Where("cow_type = ?", req.CowType).
  337. Where("pasture_id = ?", userModel.AppPasture.Id).
  338. Where("DATE_FORMAT(FROM_UNIXTIME(`created_at`),'%Y-%m-%d') IN ?", lastDayForMonth)
  339. if req.Lact >= 0 && req.Lact <= 3 {
  340. pref.Where("lact = ?", req.Lact)
  341. } else {
  342. pref.Where("lact > ?", req.Lact)
  343. }
  344. if err = pref.Group("month").
  345. Find(&cowPregnantMonthList).Error; err != nil {
  346. return nil, xerr.WithStack(err)
  347. }
  348. // 历史每月流产牛头数量
  349. cowAbortionMonthList := make([]*model.CowPregnantMonth, 0)
  350. pref2 := s.DB.Model(new(model.EventAbortion)).
  351. Select(`
  352. COUNT(cow_id) AS cow_count,
  353. DATE_FORMAT(FROM_UNIXTIME(abortion_at),'%Y-%m') as month`,
  354. ).Where("cow_type = ?", req.CowType).
  355. Where("DATE_FORMAT(FROM_UNIXTIME(`abortion_at`),'%Y-%m') IN ?", dayTimeList)
  356. if req.Lact >= 0 {
  357. pref2.Where("lact = ?", req.Lact)
  358. }
  359. if err = pref2.Group("month").Find(&cowAbortionMonthList).Error; err != nil {
  360. return nil, xerr.WithStack(err)
  361. }
  362. chart := &pasturePb.AbortionRateChart{
  363. Header: make([]string, 0),
  364. AbortionCountMonth: make([]int32, 0),
  365. PregnantCountMonth: make([]int32, 0),
  366. AbortionRateMonth: make([]float32, 0),
  367. }
  368. table := make([]*pasturePb.AbortionRateTable, 0)
  369. for _, v2 := range cowAbortionMonthList {
  370. pregnantCountMonth := int32(0)
  371. for _, v := range cowPregnantMonthList {
  372. if v.Month == v2.Month {
  373. pregnantCountMonth = v.CowCount
  374. }
  375. }
  376. abortionRateMonth := float64(0)
  377. if pregnantCountMonth > 0 && v2.CowCount > 0 {
  378. abortionRateMonth = util.RoundToTwoDecimals(float64(v2.CowCount) / float64(pregnantCountMonth) * 100)
  379. }
  380. chart.Header = append(chart.Header, v2.Month)
  381. chart.AbortionCountMonth = append(chart.AbortionCountMonth, v2.CowCount)
  382. chart.PregnantCountMonth = append(chart.PregnantCountMonth, pregnantCountMonth)
  383. chart.AbortionRateMonth = append(chart.AbortionRateMonth, float32(abortionRateMonth))
  384. table = append(table, &pasturePb.AbortionRateTable{
  385. AbortionCount: v2.CowCount,
  386. MonthName: v2.Month,
  387. PregnantCount: pregnantCountMonth,
  388. AbortionRate: float32(abortionRateMonth),
  389. })
  390. }
  391. return &pasturePb.AbortionRateResponse{
  392. Code: http.StatusOK,
  393. Msg: "ok",
  394. Data: &pasturePb.AbortionRateData{
  395. Chart: chart,
  396. Table: table,
  397. },
  398. }, nil
  399. }
  400. func (s *StoreEntry) TwentyOnePregnantRate(ctx context.Context, req *pasturePb.TwentyOnePregnantRateRequest) (*pasturePb.TwentyOnePregnantRateResponse, error) {
  401. userModel, err := s.GetUserModel(ctx)
  402. if err != nil {
  403. return nil, xerr.WithStack(err)
  404. }
  405. startUnix := util.TimeParseLocalUnix(req.StartDate)
  406. endUnix := util.TimeParseLocalUnix(req.EndDate)
  407. if startUnix > endUnix {
  408. return nil, xerr.Customf("开始时间不能大于结束时间: %s ~ %d", req.StartDate, req.EndDate)
  409. }
  410. nowDateTime := time.Now()
  411. if endUnix > nowDateTime.Unix() {
  412. return nil, xerr.Customf("结束时间不能大于当前时间: %s ~ %s", req.EndDate, nowDateTime.Format(model.LayoutDate2))
  413. }
  414. dataRange, err := util.Get21DayPeriods(req.StartDate, req.EndDate)
  415. if err != nil {
  416. return nil, xerr.WithStack(err)
  417. }
  418. chart := &pasturePb.TwentyOnePregnantRateChart{
  419. Header: make([]string, 0),
  420. PregnantRate: make([]float32, 0),
  421. MatingRate: make([]float32, 0),
  422. }
  423. // 牛只主动停配期
  424. systemBasicName := ""
  425. switch req.CowType {
  426. case pasturePb.CowType_Breeding_Calf:
  427. systemBasicName = model.ProactivelyStopBreedingForAdult
  428. case pasturePb.CowType_Reserve_Calf:
  429. systemBasicName = model.ProactivelyStopBreedingForBackup
  430. default:
  431. return nil, xerr.Customf("不支持的牛只类型: %d", req.CowType)
  432. }
  433. systemBasic, err := s.GetSystemBasicByName(ctx, systemBasicName)
  434. if err != nil {
  435. return nil, xerr.WithStack(err)
  436. }
  437. stopBreedingDay := systemBasic.MinValue * 86400
  438. dateCowList := make([][]*model.Cow, len(dataRange))
  439. twentyOnePregnantRateList := make([]*pasturePb.TwentyOnePregnantRateList, 0)
  440. for i, v := range dataRange {
  441. middleDay, err := util.GetRangeDayMiddleDay(v, 11)
  442. if err != nil {
  443. return nil, xerr.WithStack(err)
  444. }
  445. middleDayUnix := util.TimeParseLocalEndUnix(middleDay)
  446. chart.Header = append(chart.Header, fmt.Sprintf("%s ~ %s", v[0], v[1]))
  447. cowList := s.TwentyOnePregnantCowList(userModel.AppPasture.Id, req.CowType, stopBreedingDay, middleDayUnix, []int64{})
  448. twentyOnePregnantRateList = append(twentyOnePregnantRateList, &pasturePb.TwentyOnePregnantRateList{
  449. StartDay: v[0],
  450. EndDay: v[1],
  451. ShouldBreedCount: int32(len(cowList)),
  452. RealityBreedCount: 0,
  453. BreedRate: 0,
  454. ShouldPregnantCount: 0,
  455. RealityPregnantCount: 0,
  456. PregnantRate: 0,
  457. RealityAbortionCount: 0,
  458. AbortionRate: 0,
  459. })
  460. dateCowList[i] = cowList
  461. }
  462. return &pasturePb.TwentyOnePregnantRateResponse{
  463. Code: http.StatusOK,
  464. Msg: "ok",
  465. Data: &pasturePb.TwentyOnePregnantRateData{
  466. Chart: chart,
  467. Table: &pasturePb.TwentyOnePregnantRateTable{
  468. List: twentyOnePregnantRateList,
  469. Total: int32(len(dataRange)),
  470. },
  471. },
  472. }, nil
  473. }
  474. // TwentyOnePregnantCowList 21天牛只停配期牛只列表
  475. func (s *StoreEntry) TwentyOnePregnantCowList(
  476. pastureId int64,
  477. cowType pasturePb.CowType_Kind,
  478. stopBreedingDay int32,
  479. middleDay int64,
  480. notInCow []int64,
  481. ) []*model.Cow {
  482. cowList := make([]*model.Cow, 0)
  483. switch cowType {
  484. case pasturePb.CowType_Reserve_Calf:
  485. pref := s.DB.Model(new(model.Cow)).
  486. Where("pasture_id = ?", pastureId).
  487. Where("cow_type = ?", cowType).
  488. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  489. Where("is_pregnant = ?", pasturePb.IsShow_No).
  490. Where("lact = ?", 0).
  491. Where("birth_at + ? < ?", stopBreedingDay, middleDay)
  492. if len(notInCow) > 0 {
  493. pref = pref.Where("id NOT IN ?", notInCow)
  494. }
  495. if err := pref.Find(&cowList).Error; err != nil {
  496. zaplog.Error("TwentyOnePregnantCowList",
  497. zap.Any("cowType", cowType),
  498. zap.Any("stopBreedingDay", stopBreedingDay),
  499. zap.Any("middleDay", middleDay),
  500. zap.Any("notInCow", notInCow),
  501. )
  502. }
  503. case pasturePb.CowType_Breeding_Calf:
  504. }
  505. return cowList
  506. }