calendar.go 16 KB

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