calendar.go 18 KB

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