calendar.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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. currentUser, err := s.GetCurrentSystemUser(ctx)
  15. if err != nil || currentUser.Id <= 0 {
  16. return nil, xerr.WithStack(err)
  17. }
  18. var count int64 = 0
  19. eventItem := make([]*model.EventItem, 0)
  20. pref := s.DB.Model(&model.EventItem{})
  21. if req.StartAt > 0 && req.EndAt > 0 && req.StartAt <= req.EndAt {
  22. pref = pref.Where("plan_day >= ?", req.StartAt).
  23. Where("plan_day <= ?", req.EndAt)
  24. }
  25. if len(req.CowIds) > 0 {
  26. cowList, _ := s.ParseCowIds(ctx, req.CowIds)
  27. cowIds := make([]int64, 0)
  28. for _, cow := range cowList {
  29. cowIds = append(cowIds, cow.Id)
  30. }
  31. if len(cowIds) > 0 {
  32. pref.Where("cow_id IN (?)", cowIds)
  33. }
  34. }
  35. if req.CalendarType > 0 {
  36. pref.Where("calendar_type = ?", req.CalendarType)
  37. }
  38. if req.IsFinish > 0 {
  39. pref.Where("is_finish = ?", req.IsFinish)
  40. }
  41. if req.IsExpire > 0 {
  42. pref.Where("is_expire = ?", req.IsExpire)
  43. }
  44. if err = pref.Order("id desc").
  45. Count(&count).
  46. Limit(int(pagination.PageSize)).
  47. Offset(int(pagination.PageOffset)).
  48. Find(&eventItem).Error; err != nil {
  49. return nil, xerr.WithStack(err)
  50. }
  51. penMap := s.PenMap(ctx)
  52. calendarMap := CalendarTypeMap()
  53. return &pasturePb.CalendarToDoResponse{
  54. Code: http.StatusOK,
  55. Message: "ok",
  56. Data: &pasturePb.CalendarToDoData{
  57. List: model.EventItemSlice(eventItem).ToPB(penMap, calendarMap),
  58. Total: int32(count),
  59. PageSize: pagination.PageSize,
  60. Page: pagination.Page,
  61. },
  62. }, nil
  63. }
  64. func (s *StoreEntry) CalendarList(ctx context.Context, req *pasturePb.CalendarRequest) (*pasturePb.CalendarResponse, error) {
  65. calendarList := make([]*model.Calendar, 0)
  66. if err := s.DB.Model(&model.Calendar{}).
  67. Where("show_day >= ?", req.ShowStartDay).
  68. Where("show_day <= ?", req.ShowEndDay).
  69. Where("is_show = ?", pasturePb.IsShow_Ok).
  70. Find(&calendarList).Error; err != nil {
  71. return nil, xerr.WithStack(err)
  72. }
  73. return &pasturePb.CalendarResponse{
  74. Code: http.StatusOK,
  75. Message: "ok",
  76. Data: model.CalendarSlice(calendarList).ToPB(),
  77. }, nil
  78. }
  79. func (s *StoreEntry) CalendarTableDetail(
  80. ctx context.Context,
  81. req *pasturePb.CalendarTableRequest,
  82. pagination *pasturePb.PaginationModel,
  83. ) (interface{}, error) {
  84. if req.Start != time.Now().Format(model.LayoutDate2) {
  85. return nil, xerr.Custom("只能获取当天的数据")
  86. }
  87. newCalendar := &model.Calendar{}
  88. if err := s.DB.Model(&model.Calendar{}).
  89. Where("calendar_type = ?", req.CalendarType).
  90. Where("show_day = ?", req.Start).
  91. Where("is_show = ?", pasturePb.IsShow_Ok).
  92. First(newCalendar).Error; err != nil {
  93. return nil, xerr.WithStack(err)
  94. }
  95. if newCalendar.Id <= 0 {
  96. return nil, xerr.New("不存在该日历数据")
  97. }
  98. return s.getCalendarCowList(ctx, req.CalendarType, req.Start, pagination)
  99. }
  100. func (s *StoreEntry) getCalendarCowList(
  101. ctx context.Context,
  102. calendarType pasturePb.CalendarType_Kind,
  103. showDay string,
  104. pagination *pasturePb.PaginationModel) (interface{}, error) {
  105. req := &pasturePb.ItemsRequest{EndDay: showDay, CalendarType: calendarType, Status: pasturePb.IsShow_No}
  106. switch calendarType {
  107. case pasturePb.CalendarType_Immunisation: // 免疫
  108. return s.ImmunisationCowList(ctx, req, pagination)
  109. case pasturePb.CalendarType_PG, pasturePb.CalendarType_RnGH: // 同期
  110. return s.SameTimeCowList(ctx, req, pagination)
  111. case pasturePb.CalendarType_Pregnancy_Check: // 孕检
  112. return s.PregnancyCheckCowList(ctx, req, pagination)
  113. case pasturePb.CalendarType_WorkOrder: // 工作单
  114. return s.WorkOrderCowList(ctx, req, pagination)
  115. case pasturePb.CalendarType_Weaning: // 断奶
  116. return s.WeaningCowList(ctx, req, pagination)
  117. case pasturePb.CalendarType_Treatment: // 治疗
  118. return s.TreatmentCowList(ctx, req, pagination)
  119. case pasturePb.CalendarType_Mating: // 配种
  120. return s.MatingCowList(ctx, req, pagination)
  121. case pasturePb.CalendarType_Calving: // 产犊
  122. return s.CalvingCowList(ctx, req, pagination)
  123. default:
  124. return nil, xerr.New("不支持的日历类型")
  125. }
  126. }
  127. func (s *StoreEntry) ImmunisationCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.ImmunizationItemsResponse, error) {
  128. eventImmunizationPlanList := make([]*model.EventImmunizationPlan, 0)
  129. count := int64(0)
  130. pref := s.DB.Model(&model.EventImmunizationPlan{}).
  131. Where("status = ?", pasturePb.IsShow_No)
  132. if req.StartDay != "" {
  133. dateTime := util.TimeParseLocalUnix(req.StartDay)
  134. pref.Where("plan_day >= ?", dateTime)
  135. }
  136. if req.EndDay != "" {
  137. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  138. pref.Where("plan_day <= ?", dateTime)
  139. }
  140. if req.CowId > 0 {
  141. pref.Where("cow_id = ?", req.CowId)
  142. }
  143. if req.ImmunizationId > 0 {
  144. pref.Where("plan_id = ?", req.ImmunizationId)
  145. }
  146. if req.PenId > 0 {
  147. pref.Where("pen_id = ?", req.PenId)
  148. }
  149. if req.Status > 0 {
  150. pref.Where("status = ?", req.Status)
  151. }
  152. if err := pref.Order("id desc").
  153. Count(&count).
  154. Limit(int(pagination.PageSize)).
  155. Offset(int(pagination.PageOffset)).
  156. Order("id desc").
  157. Find(&eventImmunizationPlanList).Error; err != nil {
  158. return nil, xerr.WithStack(err)
  159. }
  160. return &pasturePb.ImmunizationItemsResponse{
  161. Code: http.StatusOK,
  162. Message: "ok",
  163. Data: &pasturePb.ImmunizationItemsData{
  164. Total: int32(count),
  165. Page: pagination.Page,
  166. PageSize: pagination.PageSize,
  167. Header: map[string]string{
  168. "id": "编号",
  169. "cowId": "牛号",
  170. "penName": "栏舍",
  171. "dayAge": "日龄",
  172. "planDay": "免疫开始时间",
  173. "immunizationPlanName": "免疫名称",
  174. "status": "状态",
  175. },
  176. List: model.EventImmunizationPlanSlice(eventImmunizationPlanList).ToPB(),
  177. },
  178. }, nil
  179. }
  180. func (s *StoreEntry) SameTimeCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SameTimeItemResponse, error) {
  181. sameTimeBodyList := make([]*model.SameTimeItemBody, 0)
  182. count := int64(0)
  183. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCowSameTime).TableName())).
  184. Select("a.id,a.cow_id,a.pen_name,a.status,a.same_time_type,b.breed_status,a.same_time_name,b.cow_type,b.day_age,b.calving_age,b.abortion_age,b.last_calving_at,b.last_abortion_at").
  185. Joins("left join cow as b on a.cow_id = b.id").
  186. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  187. Where("a.status = ?", pasturePb.IsShow_No)
  188. if req.EndDay != "" {
  189. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  190. pref.Where("a.plan_day <= ?", dateTime)
  191. }
  192. if req.CalendarType > 0 {
  193. pref.Where("a.same_time_type = ?", req.CalendarType)
  194. }
  195. if req.CowType > 0 {
  196. pref.Where("b.cow_type = ?", req.CowType)
  197. }
  198. if req.Status > 0 {
  199. pref.Where("a.status = ?", pasturePb.IsShow_No)
  200. }
  201. if err := pref.Order("a.id desc").Count(&count).
  202. Limit(int(pagination.PageSize)).
  203. Offset(int(pagination.PageOffset)).
  204. Order("id desc").
  205. Find(&sameTimeBodyList).Error; err != nil {
  206. return nil, xerr.WithStack(err)
  207. }
  208. breedStatusMap := s.CowBreedStatusMap()
  209. penMap := s.PenMap(ctx)
  210. sameTimeTypeMap := s.SameTimeTypeMap()
  211. return &pasturePb.SameTimeItemResponse{
  212. Code: http.StatusOK,
  213. Message: "ok",
  214. Data: &pasturePb.SameTimeItemsData{
  215. Total: int32(count),
  216. Page: pagination.Page,
  217. PageSize: pagination.PageSize,
  218. Header: map[string]string{
  219. "id": "编号",
  220. "cowId": "牛号",
  221. "breedStatusName": "繁殖状态",
  222. "cowTypeName": "牛只类型",
  223. "penName": "栏舍",
  224. "lact": "胎次",
  225. "calvingAge": "产后天数",
  226. "abortionAge": "流产天数",
  227. "dayAge": "日龄",
  228. "status": "状态",
  229. "sameTimeTypeName": "处理方式",
  230. "matingTimes": "本胎次配次",
  231. "calvingAtFormat": "产犊日期",
  232. "abortionAtFormat": "流产日期",
  233. "sameTimeName": "同情名称",
  234. },
  235. List: model.SameTimeBodySlice(sameTimeBodyList).ToPB(breedStatusMap, penMap, sameTimeTypeMap),
  236. },
  237. }, nil
  238. }
  239. func (s *StoreEntry) PregnancyCheckCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.PregnancyCheckItemsResponse, error) {
  240. newPregnancyCheckItems := make([]*pasturePb.PregnancyCheckItems, 0)
  241. var count int64
  242. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventPregnantCheck).TableName())).
  243. Select("a.id,a.cow_id,a.pen_id,a.status,b.breed_status,b.cow_type,b.day_age,b.calving_age,b.abortion_age,a.bull_id").
  244. Joins("left join cow as b on a.cow_id = b.id").
  245. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  246. Where("a.status = ?", pasturePb.IsShow_No)
  247. if req.EndDay != "" {
  248. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  249. pref.Where("plan_day <= ?", dateTime)
  250. }
  251. if req.CowType > 0 {
  252. pref.Where("cow_type = ?", req.CowType)
  253. }
  254. if req.Status > 0 {
  255. pref.Where("a.status = ?", req.Status)
  256. }
  257. if req.PregnantCheckType > 0 {
  258. pref.Where("pregnant_check_name = ?", model.PregnantCheckNameValueMap[req.PregnantCheckType])
  259. }
  260. if err := pref.Order("id desc").
  261. Count(&count).
  262. Limit(int(pagination.PageSize)).
  263. Offset(int(pagination.PageOffset)).
  264. Order("id desc").
  265. Find(&newPregnancyCheckItems).Error; err != nil {
  266. return nil, xerr.WithStack(err)
  267. }
  268. return &pasturePb.PregnancyCheckItemsResponse{
  269. Code: http.StatusOK,
  270. Message: "ok",
  271. Data: &pasturePb.PregnancyCheckItemsData{
  272. Total: int32(count),
  273. Page: pagination.Page,
  274. PageSize: pagination.PageSize,
  275. Header: map[string]string{
  276. "id": "编号",
  277. "cowId": "牛号",
  278. "cowTypeName": "牛只类型",
  279. "penName": "栏舍",
  280. "lact": "胎次",
  281. "dayAge": "日龄",
  282. "planDay": "孕检日期",
  283. "checkTypeName": "孕检名称",
  284. "status": "状态",
  285. "matingTimes": "配次",
  286. "calvingAtFormat": "产检日期",
  287. "matingAtFormat": "配种日期",
  288. "matingAge": "配后天数",
  289. "bullId": "配种公牛",
  290. },
  291. List: newPregnancyCheckItems,
  292. },
  293. }, nil
  294. }
  295. func (s *StoreEntry) WeaningCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.WeaningItemsResponse, error) {
  296. weaningItems := make([]*pasturePb.WeaningItems, 0)
  297. count := int64(0)
  298. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventWeaning).TableName())).
  299. Select("a.*,b.day_age,c.name as pen_name").
  300. Joins("left join cow as b on a.cow_id = b.id").
  301. Joins("left join pen as c on a.before_pen_id = c.id").
  302. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  303. Where("a.status = ?", pasturePb.IsShow_No)
  304. if req.EndDay != "" {
  305. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  306. pref.Where("a.plan_day <= ?", dateTime)
  307. }
  308. if req.Status > 0 {
  309. pref.Where("a.status = ?", req.Status)
  310. }
  311. if err := pref.Order("a.id desc").Count(&count).
  312. Limit(int(pagination.PageSize)).
  313. Offset(int(pagination.PageOffset)).
  314. Find(&weaningItems).Error; err != nil {
  315. return nil, xerr.WithStack(err)
  316. }
  317. return &pasturePb.WeaningItemsResponse{
  318. Code: http.StatusOK,
  319. Message: "ok",
  320. Data: &pasturePb.WeaningItemsData{
  321. Total: int32(count),
  322. Page: pagination.Page,
  323. PageSize: pagination.PageSize,
  324. Header: map[string]string{
  325. "id": "编号",
  326. "cowId": "牛号",
  327. "penName": "栏舍",
  328. "planDay": "断奶日期",
  329. "dayAge": "日龄",
  330. "status": "状态",
  331. },
  332. List: weaningItems,
  333. },
  334. }, nil
  335. }
  336. func (s *StoreEntry) MatingCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.MatingItemsResponse, error) {
  337. matingItems := make([]*pasturePb.MatingItems, 0)
  338. count := int64(0)
  339. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventMating).TableName())).
  340. Select("a.id,a.cow_id,a.status,b.breed_status,b.cow_type,b.pen_id,b.day_age,b.calving_age,b.abortion_age,c.name as pen_name").
  341. Joins("left join cow as b on a.cow_id = b.id").
  342. Joins("left join pen as c on a.pen_id = c.id").
  343. Where("a.status = ?", pasturePb.IsShow_No)
  344. if req.EndDay != "" {
  345. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  346. pref.Where("a.plan_day <= ?", dateTime)
  347. }
  348. if req.PenId > 0 {
  349. pref.Where("a.pen_id = ?", req.PenId)
  350. }
  351. if req.Status > 0 {
  352. pref.Where("a.status = ?", req.Status)
  353. }
  354. if err := pref.Order("a.id desc").
  355. Count(&count).
  356. Limit(int(pagination.PageSize)).
  357. Offset(int(pagination.PageOffset)).
  358. Find(&matingItems).Error; err != nil {
  359. return nil, xerr.WithStack(err)
  360. }
  361. return &pasturePb.MatingItemsResponse{
  362. Code: http.StatusOK,
  363. Message: "ok",
  364. Data: &pasturePb.MatingItemsData{
  365. Total: int32(count),
  366. Page: pagination.Page,
  367. PageSize: pagination.PageSize,
  368. Header: map[string]string{
  369. "id": "编号",
  370. "cowId": "牛号",
  371. "breedStatusName": "繁殖状态",
  372. "cowTypeName": "牛只类型",
  373. "penName": "栏舍",
  374. "lact": "胎次",
  375. "calvingAge": "产后天数",
  376. "abortionAge": "流产天数",
  377. "dayAge": "日龄",
  378. "status": "状态",
  379. },
  380. List: matingItems,
  381. },
  382. }, nil
  383. }
  384. func (s *StoreEntry) CalvingCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (*pasturePb.CalvingItemsResponse, error) {
  385. calvingItems := make([]*pasturePb.CalvingItems, 0)
  386. count := int64(0)
  387. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventCalving).TableName())).
  388. Select(`a.id,a.cow_id,a.status,b.breed_status,b.pen_id,DATE_FORMAT(FROM_UNIXTIME(last_mating_at), '%Y-%m-%d') AS mating_at_format,
  389. b.day_age,b.last_bull_number as bull_id,DATEDIFF(NOW(),FROM_UNIXTIME(last_mating_at)) AS mating_age,DATE_FORMAT(FROM_UNIXTIME(a.plan_day), '%Y-%m-%d') AS plan_day`).
  390. Joins("left join cow as b on a.cow_id = b.id").
  391. Where("b.admission_status = ?", pasturePb.AdmissionStatus_Admission)
  392. if req.EndDay != "" {
  393. dateTime := util.TimeParseLocalEndUnix(req.EndDay)
  394. pref.Where("a.plan_day <= ?", dateTime)
  395. }
  396. if req.Status > 0 {
  397. pref.Where("a.status = ?", req.Status)
  398. }
  399. if err := pref.Order("a.id desc").
  400. Count(&count).
  401. Limit(int(pagination.PageSize)).
  402. Offset(int(pagination.PageOffset)).
  403. Find(&calvingItems).Error; err != nil {
  404. return nil, xerr.WithStack(err)
  405. }
  406. breedStatusMap := s.CowBreedStatusMap()
  407. for _, v := range calvingItems {
  408. breedStatusName := ""
  409. if breedStatus, ok := breedStatusMap[v.BreedStatus]; ok {
  410. breedStatusName = breedStatus
  411. }
  412. v.BreedStatusName = breedStatusName
  413. }
  414. return &pasturePb.CalvingItemsResponse{
  415. Code: http.StatusOK,
  416. Message: "ok",
  417. Data: &pasturePb.CalvingItemsData{
  418. Total: int32(count),
  419. Page: pagination.Page,
  420. PageSize: pagination.PageSize,
  421. Header: map[string]string{
  422. "id": "编号",
  423. "cowId": "牛号",
  424. "breedStatusName": "繁殖状态",
  425. "penName": "栏舍",
  426. "lact": "胎次",
  427. "matingAge": "配后天数",
  428. "dayAge": "日龄",
  429. "status": "是否完成",
  430. "bullId": "配种公牛号",
  431. "planDay": "预产时间",
  432. "matingAtFormat": "配种时间",
  433. },
  434. List: calvingItems,
  435. },
  436. }, nil
  437. }
  438. // WorkOrderCowList 暂时不处理工单业务
  439. func (s *StoreEntry) WorkOrderCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  440. return nil, nil
  441. }
  442. // TreatmentCowList 治疗清单
  443. func (s *StoreEntry) TreatmentCowList(ctx context.Context, req *pasturePb.ItemsRequest, pagination *pasturePb.PaginationModel) (interface{}, error) {
  444. return nil, nil
  445. }