calendar.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. package backend
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "kpt-pasture/util"
  7. "net/http"
  8. "time"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. "gitee.com/xuyiping_admin/pkg/xerr"
  11. )
  12. // CalendarToDoList 获取日历待办列表
  13. func (s *StoreEntry) CalendarToDoList(ctx context.Context, req *pasturePb.CalendarToDoRequest, pagination *pasturePb.PaginationModel) (*pasturePb.CalendarToDoResponse, error) {
  14. userModel, err := s.GetUserModel(ctx)
  15. if err != nil {
  16. return nil, xerr.WithStack(err)
  17. }
  18. whereSql := ""
  19. if req.EarNumber != "" {
  20. whereSql += fmt.Sprintf(` AND ear_number = '%s' `, req.EarNumber)
  21. }
  22. whereSql += fmt.Sprintf(" AND pasture_id = %d AND end_day <= %d ", userModel.AppPasture.Id, util.TimeParseLocalEndUnix(time.Now().Format(model.LayoutDate2)))
  23. calendarToDoList := make([]*pasturePb.CalendarToDoList, 0)
  24. sql := `SELECT a.cow_id,b.pen_name,a.calendar_type_name,a.calendar_type_kind as calendar_type,DATE_FORMAT(FROM_UNIXTIME(a.plan_day), '%Y-%m-%d') AS plan_day,a.remaining_days,b.lact,b.ear_number FROM (
  25. SELECT cow_id,plan_day,'免疫' as calendar_type_name,1 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_immunization_plan WHERE status = 2` + whereSql + `
  26. UNION ALL
  27. SELECT cow_id,plan_day,'同期' as calendar_type_name,2 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_cow_same_time WHERE status = 2` + whereSql + `
  28. UNION ALL
  29. SELECT cow_id,plan_day,'孕检' as calendar_type_name,4 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_pregnant_check WHERE status = 2` + whereSql + `
  30. UNION ALL
  31. SELECT cow_id,plan_day,'断奶' as calendar_type_name,6 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_weaning WHERE status = 2` + whereSql + `
  32. UNION ALL
  33. SELECT cow_id,plan_day,'配种' as calendar_type_name,8 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_mating WHERE status = 2` + whereSql + `
  34. UNION ALL
  35. SELECT cow_id,plan_day,'产犊' as calendar_type_name,9 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_calving WHERE status = 2` + whereSql + `
  36. UNION ALL
  37. SELECT cow_id,plan_day,'干奶' as calendar_type_name,9 as calendar_type_kind,TIMESTAMPDIFF(DAY, NOW(), FROM_UNIXTIME(end_day)) AS remaining_days FROM event_dry_milk WHERE status = 2` + whereSql + `
  38. UNION ALL
  39. SELECT cow_id,disease_at as plan_day,'疾病' as calendar_type_name,7 as calendar_type_kind,0 AS remaining_days FROM event_cow_disease WHERE diagnosed_result IN (2,3) AND pasture_id = ` + fmt.Sprintf("%d", userModel.AppPasture.Id) + `
  40. ) as a JOIN cow b ON a.cow_id = b.id WHERE 1 = 1 `
  41. completeSql := fmt.Sprintf("%s ORDER BY a.plan_day DESC", sql)
  42. if err = s.DB.Raw(completeSql).Find(&calendarToDoList).Error; err != nil {
  43. return nil, err
  44. }
  45. nowTime := time.Now().Format(model.LayoutDate2)
  46. todayCompletedSql := `SELECT a.count as count,a.calendar_type_name as calendar_type_name,a.calendar_type_kind as calendar_type_kind FROM (
  47. SELECT count('cow_id') as count,'免疫' as calendar_type_name,1 as calendar_type_kind FROM event_immunization_plan WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  48. UNION ALL
  49. SELECT count('cow_id') as count,'同期' as calendar_type_name,2 as calendar_type_kind FROM event_cow_same_time WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  50. UNION ALL
  51. SELECT count('cow_id') as count,'孕检' as calendar_type_name,4 as calendar_type_kind FROM event_pregnant_check WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  52. UNION ALL
  53. SELECT count('cow_id') as count,'断奶' as calendar_type_name,6 as calendar_type_kind FROM event_weaning WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  54. UNION ALL
  55. SELECT count('cow_id') as count,'配种' as calendar_type_name,8 as calendar_type_kind FROM event_mating WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  56. UNION ALL
  57. SELECT count('cow_id') as count,'产犊' as calendar_type_name,9 as calendar_type_kind FROM event_calving WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  58. UNION ALL
  59. SELECT count('cow_id') as count,'干奶' as calendar_type_name,10 as calendar_type_kind FROM event_dry_milk WHERE status = 1 AND DATE_FORMAT(FROM_UNIXTIME(reality_day), '%Y-%m-%d') = ?
  60. UNION ALL
  61. SELECT count('cow_id') as count,'疾病' as calendar_type_name,7 as calendar_type_kind FROM event_cow_disease WHERE diagnosed_result = 4 AND DATE_FORMAT(FROM_UNIXTIME(curable_at), '%Y-%m-%d') = ?
  62. ) as a `
  63. toDayCompletedList := make([]*model.TodayCompletedData, 0)
  64. if err = s.DB.Raw(todayCompletedSql, nowTime, nowTime, nowTime, nowTime, nowTime, nowTime, nowTime, nowTime).
  65. Find(&toDayCompletedList).Error; err != nil {
  66. return nil, xerr.WithStack(err)
  67. }
  68. toDayCompletedCountMap := make(map[pasturePb.CalendarType_Kind]*pasturePb.ProgressList)
  69. for _, v := range toDayCompletedList {
  70. toDayCompletedCountMap[v.CalendarTypeKind] = &pasturePb.ProgressList{
  71. CalendarTypeKind: v.CalendarTypeKind,
  72. CalendarName: v.CalendarTypeName,
  73. CompletedCount: v.Count,
  74. }
  75. }
  76. list, total := Paginate(calendarToDoList, req, pagination)
  77. return &pasturePb.CalendarToDoResponse{
  78. Code: http.StatusOK,
  79. Msg: "ok",
  80. Data: &pasturePb.CalendarToDoData{
  81. List: list,
  82. Progress: ProgressList(calendarToDoList, toDayCompletedCountMap),
  83. Total: total,
  84. PageSize: pagination.PageSize,
  85. Page: pagination.Page,
  86. },
  87. }, nil
  88. }
  89. func (s *StoreEntry) CalendarList(ctx context.Context, req *pasturePb.CalendarRequest) (*pasturePb.CalendarResponse, error) {
  90. userModel, err := s.GetUserModel(ctx)
  91. if err != nil {
  92. return nil, xerr.WithStack(err)
  93. }
  94. calendarList := make([]*model.Calendar, 0)
  95. if err = s.DB.Model(new(model.Calendar)).
  96. Where("start_day BETWEEN ? AND ?", req.ShowStartDay, req.ShowEndDay).
  97. Where("pasture_id = ?", userModel.AppPasture.Id).
  98. Where("is_show = ?", pasturePb.IsShow_Ok).
  99. Find(&calendarList).Error; err != nil {
  100. return nil, xerr.WithStack(err)
  101. }
  102. return &pasturePb.CalendarResponse{
  103. Code: http.StatusOK,
  104. Msg: "ok",
  105. Data: model.CalendarSlice(calendarList).ToPB(),
  106. }, nil
  107. }
  108. func (s *StoreEntry) CalendarTableDetail(ctx context.Context, req *pasturePb.CalendarTableRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  109. userModel, err := s.GetUserModel(ctx)
  110. if err != nil {
  111. return nil, xerr.WithStack(err)
  112. }
  113. newCalendar := &model.Calendar{}
  114. if err = s.DB.Model(&model.Calendar{}).
  115. Where("calendar_type = ?", req.CalendarType).
  116. Where("start_day = ?", req.Start).
  117. Where("is_show = ?", pasturePb.IsShow_Ok).
  118. Where("pasture_id = ?", userModel.AppPasture.Id).
  119. First(newCalendar).Error; err != nil {
  120. return nil, xerr.WithStack(err)
  121. }
  122. if newCalendar.Id <= 0 {
  123. return nil, xerr.New("不存在该日历数据")
  124. }
  125. return s.getCalendarCowList(ctx, req.CalendarType, req.Start, pagination, userModel.AppPasture.Id)
  126. }
  127. func (s *StoreEntry) getCalendarCowList(
  128. ctx context.Context,
  129. calendarType pasturePb.CalendarType_Kind,
  130. showDay string,
  131. pagination *pasturePb.PaginationModel,
  132. pastureId int64,
  133. ) (interface{}, error) {
  134. req := &pasturePb.ItemsRequest{EndDay: showDay, CalendarType: calendarType, PastureId: int32(pastureId)}
  135. switch calendarType {
  136. case pasturePb.CalendarType_Immunisation: // 免疫
  137. return s.ImmunisationCowList(ctx, req, pagination)
  138. case pasturePb.CalendarType_PG, pasturePb.CalendarType_RnGH: // 同期
  139. return s.SameTimeCowList(ctx, req, pagination)
  140. case pasturePb.CalendarType_Pregnancy_Check: // 孕检
  141. return s.PregnancyCheckCowList(ctx, req, pagination)
  142. case pasturePb.CalendarType_WorkOrder: // 工作单
  143. return s.WorkOrderCowList(ctx, req, pagination)
  144. case pasturePb.CalendarType_Weaning: // 断奶
  145. return s.WeaningCowList(ctx, req, pagination)
  146. case pasturePb.CalendarType_Disease: // 治疗
  147. return s.TreatmentCowList(ctx, req, pagination)
  148. case pasturePb.CalendarType_Mating: // 配种
  149. return s.MatingCowList(ctx, req, pagination)
  150. case pasturePb.CalendarType_Calving: // 产犊
  151. return s.CalvingCowList(ctx, req, pagination)
  152. case pasturePb.CalendarType_DryMilk: // 干奶
  153. return s.DryMilkCowList(ctx, req, pagination)
  154. default:
  155. return nil, xerr.New("不支持的日历类型")
  156. }
  157. }
  158. func (s *StoreEntry) ImmunisationCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.ImmunizationItemsResponse, error) {
  159. userModel, err := s.GetUserModel(ctx)
  160. if err != nil {
  161. return nil, xerr.WithStack(err)
  162. }
  163. eventImmunizationPlanList := make([]*model.EventImmunizationPlan, 0)
  164. count := int64(0)
  165. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventImmunizationPlan).TableName())).
  166. Select("a.id,a.cow_id,a.plan_day,a.plan_name as immunization_plan_name,b.pen_name,b.day_age,b.ear_number").
  167. Joins(fmt.Sprintf("JOIN %s AS b on a.cow_id = b.id", new(model.Cow).TableName())).
  168. Where("a.status = ?", pasturePb.IsShow_No).
  169. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  170. if req.StartDay != "" && req.EndDay != "" {
  171. startTime := util.TimeParseLocalUnix(req.StartDay)
  172. endTime := util.TimeParseLocalEndUnix(req.EndDay)
  173. pref.Where("a.plan_day between ? and ?", startTime, endTime)
  174. }
  175. if req.CowId > 0 {
  176. pref.Where("a.cow_id = ?", req.CowId)
  177. }
  178. if req.ImmunizationId > 0 {
  179. pref.Where("a.plan_id = ?", req.ImmunizationId)
  180. }
  181. if req.PenId > 0 {
  182. pref.Where("b.pen_id = ?", req.PenId)
  183. }
  184. if err = pref.Count(&count).
  185. Limit(int(pagination.PageSize)).
  186. Offset(int(pagination.PageOffset)).
  187. Order("a.plan_day DESC").
  188. Find(&eventImmunizationPlanList).Error; err != nil {
  189. return nil, xerr.WithStack(err)
  190. }
  191. return &pasturePb.ImmunizationItemsResponse{
  192. Code: http.StatusOK,
  193. Msg: "ok",
  194. Data: &pasturePb.ImmunizationItemsData{
  195. Total: int32(count),
  196. Page: pagination.Page,
  197. PageSize: pagination.PageSize,
  198. Header: map[string]string{
  199. "id": "编号",
  200. "cowId": "牛号",
  201. "earNumber": "耳标号",
  202. "penName": "栏舍",
  203. "dayAge": "日龄",
  204. "planDay": "免疫时间",
  205. "immunizationPlanName": "免疫名称",
  206. },
  207. List: model.EventImmunizationPlanSlice(eventImmunizationPlanList).ToPB(),
  208. },
  209. }, nil
  210. }
  211. func (s *StoreEntry) SameTimeCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SameTimeItemResponse, error) {
  212. userModel, err := s.GetUserModel(ctx)
  213. if err != nil {
  214. return nil, xerr.WithStack(err)
  215. }
  216. sameTimeBodyList := make([]*model.SameTimeItemBody, 0)
  217. count := int64(0)
  218. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
  219. Select(`a.id,a.cow_id,a.ear_number,a.pen_name,a.status,a.same_time_type,b.breed_status,a.same_time_name,a.plan_day,
  220. b.cow_type,b.day_age,b.calving_age,b.abortion_age,b.last_calving_at,b.last_abortion_at,b.lact,b.pen_name,b.mating_times`).
  221. Joins("left join cow as b on a.cow_id = b.id").
  222. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  223. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  224. Where("a.status = ?", pasturePb.IsShow_No)
  225. if req.EndDay != "" {
  226. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  227. pref.Where("a.plan_day <= ?", dateTime)
  228. }
  229. if req.CowType > 0 {
  230. pref.Where("b.cow_type = ?", req.CowType)
  231. }
  232. if req.SameTimeId > 0 {
  233. pref.Where("a.same_time_id = ?", req.SameTimeId)
  234. }
  235. if req.SameTimeType > 0 {
  236. pref.Where("a.same_time_type = ?", req.SameTimeType)
  237. }
  238. if err = pref.Order("a.plan_day DESC").Count(&count).
  239. Limit(int(pagination.PageSize)).
  240. Offset(int(pagination.PageOffset)).
  241. Find(&sameTimeBodyList).Error; err != nil {
  242. return nil, xerr.WithStack(err)
  243. }
  244. breedStatusMap := s.CowBreedStatusMap()
  245. penMap := s.PenMap(ctx, int64(req.PastureId))
  246. sameTimeTypeMap := s.SameTimeTypeMap()
  247. return &pasturePb.SameTimeItemResponse{
  248. Code: http.StatusOK,
  249. Msg: "ok",
  250. Data: &pasturePb.SameTimeItemsData{
  251. Total: int32(count),
  252. Page: pagination.Page,
  253. PageSize: pagination.PageSize,
  254. Header: map[string]string{
  255. "id": "编号",
  256. "cowId": "牛号",
  257. "earNumber": "耳标号",
  258. "breedStatusName": "繁殖状态",
  259. "cowTypeName": "牛只类型",
  260. "planDayAtFormat": "执行日期",
  261. "penName": "栏舍",
  262. "lact": "胎次",
  263. "calvingAge": "产后天数",
  264. "abortionAge": "流产天数",
  265. "dayAge": "日龄",
  266. "status": "状态",
  267. "sameTimeTypeName": "处理方式",
  268. "matingTimes": "本胎次配次",
  269. "calvingAtFormat": "产犊日期",
  270. "abortionAtFormat": "流产日期",
  271. "sameTimeName": "同期名称",
  272. },
  273. List: model.SameTimeBodySlice(sameTimeBodyList).ToPB(breedStatusMap, penMap, sameTimeTypeMap),
  274. },
  275. }, nil
  276. }
  277. func (s *StoreEntry) PregnancyCheckCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PregnancyCheckItemsResponse, error) {
  278. userModel, err := s.GetUserModel(ctx)
  279. if err != nil {
  280. return nil, xerr.WithStack(err)
  281. }
  282. newPregnancyCheckItems := make([]*pasturePb.PregnancyCheckItems, 0)
  283. var count int64
  284. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventPregnantCheck).TableName())).
  285. Select(`a.id,a.cow_id,a.ear_number,a.pen_id,a.status,b.breed_status,b.pen_name,b.cow_type,
  286. CASE a.pregnant_check_name
  287. WHEN 'pregnant_check_for_first' THEN '初检'
  288. WHEN 'pregnant_check_for_second' THEN '复检'
  289. ELSE '其他'
  290. END AS check_type_name,b.day_age,b.calving_age,b.abortion_age,a.bull_id`).
  291. Joins("left join cow as b on a.cow_id = b.id").
  292. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  293. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  294. Where("a.status = ?", pasturePb.IsShow_No)
  295. if req.EndDay != "" {
  296. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  297. pref.Where("a.plan_day <= ?", dateTime)
  298. }
  299. if req.PenId > 0 {
  300. pref.Where("b.pen_id = ?", req.PenId)
  301. }
  302. if req.CowType > 0 {
  303. pref.Where("a.cow_type = ?", req.CowType)
  304. }
  305. if req.PregnantCheckType > 0 {
  306. pref.Where("a.pregnant_check_name = ?", model.PregnantCheckNameValueMap[req.PregnantCheckType])
  307. }
  308. if err = pref.Order("a.plan_day DESC").
  309. Count(&count).
  310. Limit(int(pagination.PageSize)).
  311. Offset(int(pagination.PageOffset)).
  312. Find(&newPregnancyCheckItems).Error; err != nil {
  313. return nil, xerr.WithStack(err)
  314. }
  315. return &pasturePb.PregnancyCheckItemsResponse{
  316. Code: http.StatusOK,
  317. Msg: "ok",
  318. Data: &pasturePb.PregnancyCheckItemsData{
  319. Total: int32(count),
  320. Page: pagination.Page,
  321. PageSize: pagination.PageSize,
  322. Header: map[string]string{
  323. "id": "编号",
  324. "cowId": "牛号",
  325. "earNumber": "耳标号",
  326. "cowTypeName": "牛只类型",
  327. "penName": "栏舍",
  328. "lact": "胎次",
  329. "dayAge": "日龄",
  330. "planDay": "孕检日期",
  331. "checkTypeName": "孕检名称",
  332. "status": "状态",
  333. "matingTimes": "配次",
  334. "calvingAtFormat": "产检日期",
  335. "matingAtFormat": "配种日期",
  336. "matingAge": "配后天数",
  337. "bullId": "配种公牛",
  338. },
  339. List: newPregnancyCheckItems,
  340. },
  341. }, nil
  342. }
  343. func (s *StoreEntry) WeaningCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.WeaningItemsResponse, error) {
  344. userModel, err := s.GetUserModel(ctx)
  345. if err != nil {
  346. return nil, xerr.WithStack(err)
  347. }
  348. weaningItems := make([]*pasturePb.WeaningItems, 0)
  349. count := int64(0)
  350. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventWeaning).TableName())).
  351. Select(`a.id,a.cow_id,ROUND(b.current_weight / 1000,2) as current_weight,DATE_FORMAT(FROM_UNIXTIME(a.plan_day), '%Y-%m-%d') AS plan_day_format,
  352. b.day_age,b.pen_name,b.ear_number,DATE_FORMAT(FROM_UNIXTIME(b.birth_at), '%Y-%m-%d') AS birth_at_format`).
  353. Joins("left join cow as b on a.cow_id = b.id").
  354. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  355. Where("a.status = ?", pasturePb.IsShow_No).
  356. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  357. if req.EndDay != "" {
  358. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  359. pref.Where("a.plan_day <= ?", dateTime)
  360. }
  361. if err = pref.Order("a.plan_day DESC").Count(&count).
  362. Limit(int(pagination.PageSize)).
  363. Offset(int(pagination.PageOffset)).
  364. Find(&weaningItems).Error; err != nil {
  365. return nil, xerr.WithStack(err)
  366. }
  367. return &pasturePb.WeaningItemsResponse{
  368. Code: http.StatusOK,
  369. Msg: "ok",
  370. Data: &pasturePb.WeaningItemsData{
  371. Total: int32(count),
  372. Page: pagination.Page,
  373. PageSize: pagination.PageSize,
  374. Header: map[string]string{
  375. "id": "编号",
  376. "cowId": "牛号",
  377. "earNumber": "耳标号",
  378. "penName": "栏舍",
  379. "dayAge": "日龄",
  380. "planDayFormat": "断奶日期",
  381. "birthAtFormat": "出生日期",
  382. "currentWeight": "体重",
  383. },
  384. List: weaningItems,
  385. },
  386. }, nil
  387. }
  388. func (s *StoreEntry) MatingCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.MatingItemsResponse, error) {
  389. userModel, err := s.GetUserModel(ctx)
  390. if err != nil {
  391. return nil, xerr.WithStack(err)
  392. }
  393. matingItems := make([]*pasturePb.MatingItems, 0)
  394. count := int64(0)
  395. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventMating).TableName())).
  396. Select(`a.id,a.cow_id,a.status,a.ear_number,
  397. CASE a.expose_estrus_type
  398. WHEN 1 THEN '脖环揭发'
  399. WHEN 2 THEN '脚环/计步器'
  400. WHEN 3 THEN '自然发情'
  401. WHEN 4 THEN '同期'
  402. ELSE '其他'
  403. END AS expose_estrus_type_name,
  404. CASE
  405. WHEN last_calving_at = 0 THEN ""
  406. ELSE DATE_FORMAT(FROM_UNIXTIME(last_calving_at), '%Y-%m-%d %H:%i:%s')
  407. END AS last_calving_at_format,
  408. b.breed_status,b.cow_type,b.pen_id,b.day_age,b.calving_age,b.abortion_age,b.pen_name`).
  409. Joins("left join cow as b on a.cow_id = b.id").
  410. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  411. Where("a.status = ?", pasturePb.IsShow_No)
  412. if req.EndDay != "" {
  413. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  414. pref.Where("a.plan_day <= ?", dateTime)
  415. }
  416. if req.PenId > 0 {
  417. pref.Where("b.pen_id = ?", req.PenId)
  418. }
  419. if req.EarNumber != "" {
  420. pref.Where("a.ear_number = ?", req.EarNumber)
  421. }
  422. if err = pref.Order("a.plan_day DESC").
  423. Count(&count).
  424. Limit(int(pagination.PageSize)).
  425. Offset(int(pagination.PageOffset)).
  426. Find(&matingItems).Error; err != nil {
  427. return nil, xerr.WithStack(err)
  428. }
  429. return &pasturePb.MatingItemsResponse{
  430. Code: http.StatusOK,
  431. Msg: "ok",
  432. Data: &pasturePb.MatingItemsData{
  433. Total: int32(count),
  434. Page: pagination.Page,
  435. PageSize: pagination.PageSize,
  436. Header: map[string]string{
  437. "id": "编号",
  438. "cowId": "牛号",
  439. "earNumber": "耳标号",
  440. "breedStatusName": "繁殖状态",
  441. "cowTypeName": "牛只类型",
  442. "penName": "栏舍",
  443. "lact": "胎次",
  444. "calvingAge": "产后天数",
  445. "abortionAge": "流产天数",
  446. "dayAge": "日龄",
  447. "status": "状态",
  448. "exposeEstrusTypeName": "发情揭发方式",
  449. "lastCalvingAtFormat": "产犊日期",
  450. },
  451. List: matingItems,
  452. },
  453. }, nil
  454. }