calendar.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. package backend
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "kpt-pasture/util"
  7. "net/http"
  8. "regexp"
  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. calendarToDoList := make([]*pasturePb.CalendarToDoList, 0)
  19. pastureWhereSql := fmt.Sprintf(" AND pasture_id = %d", userModel.AppPasture.Id)
  20. whereSql := ""
  21. if req.CowId > 0 {
  22. whereSql += fmt.Sprintf(" AND cow_id = %d", req.CowId)
  23. }
  24. if req.CalendarType > 0 {
  25. calendarTypeMap := CalendarTypeMap()
  26. calendarTypeName := calendarTypeMap[req.CalendarType]
  27. if len(calendarTypeName) > 0 {
  28. re := regexp.MustCompile(`[a-zA-Z]`) // 使用正则表达式替换匹配的字母为空字符串
  29. calendarTypeName = re.ReplaceAllString(calendarTypeName, "")
  30. whereSql += fmt.Sprintf(" AND calendar_type_name = '%s'", calendarTypeName)
  31. }
  32. }
  33. sql := `SELECT a.cow_id,b.pen_name,a.calendar_type_name,DATE_FORMAT(FROM_UNIXTIME(a.plan_day), '%Y-%m-%d') AS plan_day,b.lact,
  34. b.ear_number FROM (
  35. SELECT cow_id,plan_day,'免疫' as calendar_type_name FROM event_immunization_plan WHERE status = 2 ` + pastureWhereSql + `
  36. UNION ALL
  37. SELECT cow_id,plan_day ,'同期' as calendar_type_name FROM event_cow_same_time WHERE status = 2 ` + pastureWhereSql + `
  38. UNION ALL
  39. SELECT cow_id,plan_day ,'孕检' as calendar_type_name FROM event_pregnant_check WHERE status = 2 ` + pastureWhereSql + `
  40. UNION ALL
  41. SELECT cow_id,plan_day ,'断奶' as calendar_type_name FROM event_weaning WHERE status = 2 ` + pastureWhereSql + `
  42. UNION ALL
  43. SELECT cow_id,plan_day ,'配种' as calendar_type_name FROM event_mating WHERE status = 2 ` + pastureWhereSql + `
  44. UNION ALL
  45. SELECT cow_id,plan_day ,'产犊' as calendar_type_name FROM event_calving WHERE status = 2 ` + pastureWhereSql + `
  46. ) as a JOIN cow b ON a.cow_id = b.id WHERE 1 = 1 `
  47. completeSql := fmt.Sprintf("%s %s ORDER BY a.plan_day DESC", sql, whereSql)
  48. if err = s.DB.Raw(completeSql).Find(&calendarToDoList).Error; err != nil {
  49. return nil, err
  50. }
  51. list := Paginate(calendarToDoList, pagination.Page, pagination.PageSize)
  52. return &pasturePb.CalendarToDoResponse{
  53. Code: http.StatusOK,
  54. Msg: "ok",
  55. Data: &pasturePb.CalendarToDoData{
  56. List: list,
  57. Total: int32(len(calendarToDoList)),
  58. PageSize: pagination.PageSize,
  59. Page: pagination.Page,
  60. },
  61. }, nil
  62. }
  63. func (s *StoreEntry) CalendarList(ctx context.Context, req *pasturePb.CalendarRequest) (*pasturePb.CalendarResponse, error) {
  64. userModel, err := s.GetUserModel(ctx)
  65. if err != nil {
  66. return nil, xerr.WithStack(err)
  67. }
  68. calendarList := make([]*model.Calendar, 0)
  69. if err = s.DB.Model(&model.Calendar{}).
  70. Where("show_day >= ?", req.ShowStartDay).
  71. Where("show_day <= ?", req.ShowEndDay).
  72. Where("pasture_id = ?", userModel.AppPasture.Id).
  73. Where("is_show = ?", pasturePb.IsShow_Ok).
  74. Find(&calendarList).Error; err != nil {
  75. return nil, xerr.WithStack(err)
  76. }
  77. return &pasturePb.CalendarResponse{
  78. Code: http.StatusOK,
  79. Msg: "ok",
  80. Data: model.CalendarSlice(calendarList).ToPB(),
  81. }, nil
  82. }
  83. func (s *StoreEntry) CalendarTableDetail(ctx context.Context, req *pasturePb.CalendarTableRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  84. userModel, err := s.GetUserModel(ctx)
  85. if err != nil {
  86. return nil, xerr.WithStack(err)
  87. }
  88. newCalendar := &model.Calendar{}
  89. if err = s.DB.Model(&model.Calendar{}).
  90. Where("calendar_type = ?", req.CalendarType).
  91. Where("show_day = ?", req.Start).
  92. Where("is_show = ?", pasturePb.IsShow_Ok).
  93. Where("pasture_id = ?", userModel.AppPasture.Id).
  94. First(newCalendar).Error; err != nil {
  95. return nil, xerr.WithStack(err)
  96. }
  97. if newCalendar.Id <= 0 {
  98. return nil, xerr.New("不存在该日历数据")
  99. }
  100. return s.getCalendarCowList(ctx, req.CalendarType, req.Start, pagination, userModel.AppPasture.Id)
  101. }
  102. func (s *StoreEntry) getCalendarCowList(
  103. ctx context.Context,
  104. calendarType pasturePb.CalendarType_Kind,
  105. showDay string,
  106. pagination *pasturePb.PaginationModel,
  107. pastureId int64,
  108. ) (interface{}, error) {
  109. req := &pasturePb.ItemsRequest{EndDay: showDay, CalendarType: calendarType, PastureId: int32(pastureId)}
  110. switch calendarType {
  111. case pasturePb.CalendarType_Immunisation: // 免疫
  112. return s.ImmunisationCowList(ctx, req, pagination)
  113. case pasturePb.CalendarType_PG, pasturePb.CalendarType_RnGH: // 同期
  114. return s.SameTimeCowList(ctx, req, pagination)
  115. case pasturePb.CalendarType_Pregnancy_Check: // 孕检
  116. return s.PregnancyCheckCowList(ctx, req, pagination)
  117. case pasturePb.CalendarType_WorkOrder: // 工作单
  118. return s.WorkOrderCowList(ctx, req, pagination)
  119. case pasturePb.CalendarType_Weaning: // 断奶
  120. return s.WeaningCowList(ctx, req, pagination)
  121. case pasturePb.CalendarType_Treatment: // 治疗
  122. return s.TreatmentCowList(ctx, req, pagination)
  123. case pasturePb.CalendarType_Mating: // 配种
  124. return s.MatingCowList(ctx, req, pagination)
  125. case pasturePb.CalendarType_Calving: // 产犊
  126. return s.CalvingCowList(ctx, req, pagination)
  127. default:
  128. return nil, xerr.New("不支持的日历类型")
  129. }
  130. }
  131. func (s *StoreEntry) ImmunisationCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.ImmunizationItemsResponse, error) {
  132. userModel, err := s.GetUserModel(ctx)
  133. if err != nil {
  134. return nil, xerr.WithStack(err)
  135. }
  136. eventImmunizationPlanList := make([]*model.EventImmunizationPlan, 0)
  137. count := int64(0)
  138. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventImmunizationPlan).TableName())).
  139. 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").
  140. Joins(fmt.Sprintf("JOIN %s AS b on a.cow_id = b.id", new(model.Cow).TableName())).
  141. Where("a.status = ?", pasturePb.IsShow_No).
  142. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  143. if req.StartDay != "" && req.EndDay != "" {
  144. startTime := util.TimeParseLocalUnix(req.StartDay)
  145. endTime := util.TimeParseLocalEndUnix(req.EndDay)
  146. pref.Where("a.plan_day between ? and ?", startTime, endTime)
  147. }
  148. if req.CowId > 0 {
  149. pref.Where("a.cow_id = ?", req.CowId)
  150. }
  151. if req.ImmunizationId > 0 {
  152. pref.Where("a.plan_id = ?", req.ImmunizationId)
  153. }
  154. if req.PenId > 0 {
  155. pref.Where("b.pen_id = ?", req.PenId)
  156. }
  157. if err = pref.Count(&count).
  158. Limit(int(pagination.PageSize)).
  159. Offset(int(pagination.PageOffset)).
  160. Order("a.plan_day DESC").
  161. Find(&eventImmunizationPlanList).Error; err != nil {
  162. return nil, xerr.WithStack(err)
  163. }
  164. return &pasturePb.ImmunizationItemsResponse{
  165. Code: http.StatusOK,
  166. Msg: "ok",
  167. Data: &pasturePb.ImmunizationItemsData{
  168. Total: int32(count),
  169. Page: pagination.Page,
  170. PageSize: pagination.PageSize,
  171. Header: map[string]string{
  172. "id": "编号",
  173. "cowId": "牛号",
  174. "earNumber": "耳标号",
  175. "penName": "栏舍",
  176. "dayAge": "日龄",
  177. "planDay": "免疫时间",
  178. "immunizationPlanName": "免疫名称",
  179. },
  180. List: model.EventImmunizationPlanSlice(eventImmunizationPlanList).ToPB(),
  181. },
  182. }, nil
  183. }
  184. func (s *StoreEntry) SameTimeCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SameTimeItemResponse, error) {
  185. userModel, err := s.GetUserModel(ctx)
  186. if err != nil {
  187. return nil, xerr.WithStack(err)
  188. }
  189. sameTimeBodyList := make([]*model.SameTimeItemBody, 0)
  190. count := int64(0)
  191. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
  192. 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,
  193. 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`).
  194. Joins("left join cow as b on a.cow_id = b.id").
  195. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  196. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  197. Where("a.status = ?", pasturePb.IsShow_No)
  198. if req.EndDay != "" {
  199. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  200. pref.Where("a.plan_day <= ?", dateTime)
  201. }
  202. if req.CowType > 0 {
  203. pref.Where("b.cow_type = ?", req.CowType)
  204. }
  205. if req.SameTimeId > 0 {
  206. pref.Where("a.same_time_id = ?", req.SameTimeId)
  207. }
  208. if req.SameTimeType > 0 {
  209. pref.Where("a.same_time_type = ?", req.SameTimeType)
  210. }
  211. if err = pref.Order("a.plan_day DESC").Count(&count).
  212. Limit(int(pagination.PageSize)).
  213. Offset(int(pagination.PageOffset)).
  214. Find(&sameTimeBodyList).Error; err != nil {
  215. return nil, xerr.WithStack(err)
  216. }
  217. breedStatusMap := s.CowBreedStatusMap()
  218. penMap := s.PenMap(ctx, int64(req.PastureId))
  219. sameTimeTypeMap := s.SameTimeTypeMap()
  220. return &pasturePb.SameTimeItemResponse{
  221. Code: http.StatusOK,
  222. Msg: "ok",
  223. Data: &pasturePb.SameTimeItemsData{
  224. Total: int32(count),
  225. Page: pagination.Page,
  226. PageSize: pagination.PageSize,
  227. Header: map[string]string{
  228. "id": "编号",
  229. "cowId": "牛号",
  230. "earNumber": "耳标号",
  231. "breedStatusName": "繁殖状态",
  232. "cowTypeName": "牛只类型",
  233. "planDayAtFormat": "执行日期",
  234. "penName": "栏舍",
  235. "lact": "胎次",
  236. "calvingAge": "产后天数",
  237. "abortionAge": "流产天数",
  238. "dayAge": "日龄",
  239. "status": "状态",
  240. "sameTimeTypeName": "处理方式",
  241. "matingTimes": "本胎次配次",
  242. "calvingAtFormat": "产犊日期",
  243. "abortionAtFormat": "流产日期",
  244. "sameTimeName": "同期名称",
  245. },
  246. List: model.SameTimeBodySlice(sameTimeBodyList).ToPB(breedStatusMap, penMap, sameTimeTypeMap),
  247. },
  248. }, nil
  249. }
  250. func (s *StoreEntry) PregnancyCheckCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PregnancyCheckItemsResponse, error) {
  251. userModel, err := s.GetUserModel(ctx)
  252. if err != nil {
  253. return nil, xerr.WithStack(err)
  254. }
  255. newPregnancyCheckItems := make([]*pasturePb.PregnancyCheckItems, 0)
  256. var count int64
  257. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventPregnantCheck).TableName())).
  258. Select(`a.id,a.cow_id,a.ear_number,a.pen_id,a.status,b.breed_status,b.pen_name,b.cow_type,
  259. CASE a.pregnant_check_name
  260. WHEN 'pregnant_check_for_first' THEN '初检'
  261. WHEN 'pregnant_check_for_second' THEN '复检'
  262. ELSE '其他'
  263. END AS check_type_name,b.day_age,b.calving_age,b.abortion_age,a.bull_id`).
  264. Joins("left join cow as b on a.cow_id = b.id").
  265. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  266. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  267. Where("a.status = ?", pasturePb.IsShow_No)
  268. if req.EndDay != "" {
  269. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  270. pref.Where("a.plan_day <= ?", dateTime)
  271. }
  272. if req.PenId > 0 {
  273. pref.Where("b.pen_id = ?", req.PenId)
  274. }
  275. if req.CowType > 0 {
  276. pref.Where("a.cow_type = ?", req.CowType)
  277. }
  278. if req.PregnantCheckType > 0 {
  279. pref.Where("a.pregnant_check_name = ?", model.PregnantCheckNameValueMap[req.PregnantCheckType])
  280. }
  281. if err = pref.Order("a.plan_day DESC").
  282. Count(&count).
  283. Limit(int(pagination.PageSize)).
  284. Offset(int(pagination.PageOffset)).
  285. Find(&newPregnancyCheckItems).Error; err != nil {
  286. return nil, xerr.WithStack(err)
  287. }
  288. return &pasturePb.PregnancyCheckItemsResponse{
  289. Code: http.StatusOK,
  290. Msg: "ok",
  291. Data: &pasturePb.PregnancyCheckItemsData{
  292. Total: int32(count),
  293. Page: pagination.Page,
  294. PageSize: pagination.PageSize,
  295. Header: map[string]string{
  296. "id": "编号",
  297. "cowId": "牛号",
  298. "earNumber": "耳标号",
  299. "cowTypeName": "牛只类型",
  300. "penName": "栏舍",
  301. "lact": "胎次",
  302. "dayAge": "日龄",
  303. "planDay": "孕检日期",
  304. "checkTypeName": "孕检名称",
  305. "status": "状态",
  306. "matingTimes": "配次",
  307. "calvingAtFormat": "产检日期",
  308. "matingAtFormat": "配种日期",
  309. "matingAge": "配后天数",
  310. "bullId": "配种公牛",
  311. },
  312. List: newPregnancyCheckItems,
  313. },
  314. }, nil
  315. }
  316. func (s *StoreEntry) WeaningCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.WeaningItemsResponse, error) {
  317. userModel, err := s.GetUserModel(ctx)
  318. if err != nil {
  319. return nil, xerr.WithStack(err)
  320. }
  321. weaningItems := make([]*pasturePb.WeaningItems, 0)
  322. count := int64(0)
  323. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventWeaning).TableName())).
  324. 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,
  325. b.day_age,b.pen_name,b.ear_number,DATE_FORMAT(FROM_UNIXTIME(b.birth_at), '%Y-%m-%d') AS birth_at_format`).
  326. Joins("left join cow as b on a.cow_id = b.id").
  327. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  328. Where("a.status = ?", pasturePb.IsShow_No).
  329. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  330. if req.EndDay != "" {
  331. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  332. pref.Where("a.plan_day <= ?", dateTime)
  333. }
  334. if err = pref.Order("a.plan_day DESC").Count(&count).
  335. Limit(int(pagination.PageSize)).
  336. Offset(int(pagination.PageOffset)).
  337. Find(&weaningItems).Error; err != nil {
  338. return nil, xerr.WithStack(err)
  339. }
  340. return &pasturePb.WeaningItemsResponse{
  341. Code: http.StatusOK,
  342. Msg: "ok",
  343. Data: &pasturePb.WeaningItemsData{
  344. Total: int32(count),
  345. Page: pagination.Page,
  346. PageSize: pagination.PageSize,
  347. Header: map[string]string{
  348. "id": "编号",
  349. "cowId": "牛号",
  350. "earNumber": "耳标号",
  351. "penName": "栏舍",
  352. "dayAge": "日龄",
  353. "planDayFormat": "断奶日期",
  354. "birthAtFormat": "出生日期",
  355. "currentWeight": "体重",
  356. },
  357. List: weaningItems,
  358. },
  359. }, nil
  360. }
  361. func (s *StoreEntry) MatingCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.MatingItemsResponse, error) {
  362. userModel, err := s.GetUserModel(ctx)
  363. if err != nil {
  364. return nil, xerr.WithStack(err)
  365. }
  366. matingItems := make([]*pasturePb.MatingItems, 0)
  367. count := int64(0)
  368. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventMating).TableName())).
  369. Select(`a.id,a.cow_id,a.status,a.ear_number,
  370. CASE a.expose_estrus_type
  371. WHEN 1 THEN '脖环揭发'
  372. WHEN 2 THEN '脚环/计步器'
  373. WHEN 3 THEN '自然发情'
  374. WHEN 4 THEN '同期'
  375. ELSE '其他'
  376. END AS expose_estrus_type_name,
  377. CASE
  378. WHEN last_calving_at = 0 THEN ""
  379. ELSE DATE_FORMAT(FROM_UNIXTIME(last_calving_at), '%Y-%m-%d %H:%i:%s')
  380. END AS last_calving_at_format,
  381. b.breed_status,b.cow_type,b.pen_id,b.day_age,b.calving_age,b.abortion_age,b.pen_name`).
  382. Joins("left join cow as b on a.cow_id = b.id").
  383. Where("a.pasture_id = ?", userModel.AppPasture.Id).
  384. Where("a.status = ?", pasturePb.IsShow_No)
  385. if req.EndDay != "" {
  386. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  387. pref.Where("a.plan_day <= ?", dateTime)
  388. }
  389. if req.PenId > 0 {
  390. pref.Where("b.pen_id = ?", req.PenId)
  391. }
  392. if req.EarNumber != "" {
  393. pref.Where("a.ear_number = ?", req.EarNumber)
  394. }
  395. if err = pref.Order("a.plan_day DESC").
  396. Count(&count).
  397. Limit(int(pagination.PageSize)).
  398. Offset(int(pagination.PageOffset)).
  399. Find(&matingItems).Error; err != nil {
  400. return nil, xerr.WithStack(err)
  401. }
  402. return &pasturePb.MatingItemsResponse{
  403. Code: http.StatusOK,
  404. Msg: "ok",
  405. Data: &pasturePb.MatingItemsData{
  406. Total: int32(count),
  407. Page: pagination.Page,
  408. PageSize: pagination.PageSize,
  409. Header: map[string]string{
  410. "id": "编号",
  411. "cowId": "牛号",
  412. "earNumber": "耳标号",
  413. "breedStatusName": "繁殖状态",
  414. "cowTypeName": "牛只类型",
  415. "penName": "栏舍",
  416. "lact": "胎次",
  417. "calvingAge": "产后天数",
  418. "abortionAge": "流产天数",
  419. "dayAge": "日龄",
  420. "status": "状态",
  421. "exposeEstrusTypeName": "发情揭发方式",
  422. "lastCalvingAtFormat": "产犊日期",
  423. },
  424. List: matingItems,
  425. },
  426. }, nil
  427. }
  428. func (s *StoreEntry) CalvingCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.CalvingItemsResponse, error) {
  429. userModel, err := s.GetUserModel(ctx)
  430. if err != nil {
  431. return nil, xerr.WithStack(err)
  432. }
  433. calvingItems := make([]*pasturePb.CalvingItems, 0)
  434. count := int64(0)
  435. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCalving).TableName())).
  436. Select(`a.id,a.cow_id,a.ear_number,a.status,b.breed_status,b.pen_id,ROUND(b.current_weight/100,2) as current_weight,DATE_FORMAT(FROM_UNIXTIME(last_mating_at), '%Y-%m-%d') AS mating_at_format,
  437. b.day_age,b.last_bull_number as bull_id,b.pen_name,DATEDIFF(NOW(),FROM_UNIXTIME(last_mating_at)) AS mating_age,DATE_FORMAT(FROM_UNIXTIME(a.plan_day), '%Y-%m-%d') AS plan_day`).
  438. Joins("left join cow as b on a.cow_id = b.id").
  439. Where("a.status = ?", pasturePb.IsShow_No).
  440. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  441. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  442. if req.EndDay != "" {
  443. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  444. pref.Where("a.plan_day <= ?", dateTime)
  445. }
  446. if req.Status > 0 {
  447. pref.Where("a.status = ?", req.Status)
  448. }
  449. if req.PenId > 0 {
  450. pref.Where("b.pen_id = ?", req.PenId)
  451. }
  452. if err = pref.Order("a.plan_day DESC").
  453. Count(&count).
  454. Limit(int(pagination.PageSize)).
  455. Offset(int(pagination.PageOffset)).
  456. Find(&calvingItems).Error; err != nil {
  457. return nil, xerr.WithStack(err)
  458. }
  459. breedStatusMap := s.CowBreedStatusMap()
  460. for _, v := range calvingItems {
  461. breedStatusName := ""
  462. if breedStatus, ok := breedStatusMap[v.BreedStatus]; ok {
  463. breedStatusName = breedStatus
  464. }
  465. v.BreedStatusName = breedStatusName
  466. }
  467. return &pasturePb.CalvingItemsResponse{
  468. Code: http.StatusOK,
  469. Msg: "ok",
  470. Data: &pasturePb.CalvingItemsData{
  471. Total: int32(count),
  472. Page: pagination.Page,
  473. PageSize: pagination.PageSize,
  474. Header: map[string]string{
  475. "id": "编号",
  476. "cowId": "牛号",
  477. "earNumber": "耳标号",
  478. "breedStatusName": "繁殖状态",
  479. "penName": "栏舍",
  480. "lact": "胎次",
  481. "matingAge": "配后天数",
  482. "dayAge": "日龄",
  483. "status": "是否完成",
  484. "bullId": "配种公牛号",
  485. "planDay": "预产时间",
  486. "matingAtFormat": "配种时间",
  487. "currentWeight": "体重",
  488. },
  489. List: calvingItems,
  490. },
  491. }, nil
  492. }
  493. // WorkOrderCowList 暂时不处理工单业务
  494. func (s *StoreEntry) WorkOrderCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  495. return nil, nil
  496. }
  497. // TreatmentCowList 治疗清单
  498. func (s *StoreEntry) TreatmentCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  499. return nil, nil
  500. }
  501. // Paginate 函数用于对切片进行分页
  502. func Paginate(slice []*pasturePb.CalendarToDoList, page int32, pageSize int32) []*pasturePb.CalendarToDoList {
  503. // 计算起始索引
  504. start := (page - 1) * pageSize
  505. // 如果起始索引超出切片长度,返回空切片
  506. if start >= int32(len(slice)) {
  507. return []*pasturePb.CalendarToDoList{}
  508. }
  509. // 计算结束索引
  510. end := start + pageSize
  511. // 如果结束索引超出切片长度,调整到切片末尾
  512. if end > int32(len(slice)) {
  513. end = int32(len(slice))
  514. }
  515. // 返回分页后的切片
  516. return slice[start:end]
  517. }