calendar.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package backend
  2. import (
  3. "context"
  4. "kpt-pasture/model"
  5. "net/http"
  6. "time"
  7. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  8. "gitee.com/xuyiping_admin/pkg/xerr"
  9. )
  10. func (s *StoreEntry) CalendarList(ctx context.Context, req *pasturePb.CalendarRequest) (*pasturePb.CalendarResponse, error) {
  11. calendarList := make([]*model.Calendar, 0)
  12. if err := s.DB.Model(&model.Calendar{}).
  13. Where("show_day >= ?", req.ShowStartDay).
  14. Where("show_day <= ?", req.ShowEndDay).
  15. Where("is_show = ?", pasturePb.IsShow_Ok).
  16. Find(&calendarList).Error; err != nil {
  17. return nil, xerr.WithStack(err)
  18. }
  19. return &pasturePb.CalendarResponse{
  20. Code: http.StatusOK,
  21. Message: "ok",
  22. Data: model.CalendarSlice(calendarList).ToPB(),
  23. }, nil
  24. }
  25. func (s *StoreEntry) CalendarTableDetail(ctx context.Context, req *pasturePb.CalendarTableRequest) (interface{}, error) {
  26. if req.Start != time.Now().Format(model.LayoutDate2) {
  27. return nil, xerr.New("参数错误")
  28. }
  29. newCalendar := &model.Calendar{}
  30. if err := s.DB.Model(&model.Calendar{}).
  31. Where("calendar_type = ?", req.CalendarType).
  32. Where("show_day = ?", req.Start).
  33. Where("is_show = ?", pasturePb.IsShow_Ok).
  34. First(newCalendar).Error; err != nil {
  35. return nil, xerr.WithStack(err)
  36. }
  37. if newCalendar.Id == 0 {
  38. return nil, xerr.New("不存在该日历数据")
  39. }
  40. switch newCalendar.CalendarType {
  41. case pasturePb.CalendarType_Immunisation:
  42. case pasturePb.CalendarType_PG:
  43. case pasturePb.CalendarType_RnGH:
  44. case pasturePb.CalendarType_Pregnancy_Check:
  45. case pasturePb.CalendarType_WorkOrder:
  46. case pasturePb.CalendarType_Weaning:
  47. case pasturePb.CalendarType_Treatment:
  48. }
  49. return nil, nil
  50. }