1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package backend
- import (
- "context"
- "kpt-pasture/model"
- "net/http"
- "time"
- pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
- "gitee.com/xuyiping_admin/pkg/xerr"
- )
- func (s *StoreEntry) CalendarList(ctx context.Context, req *pasturePb.CalendarRequest) (*pasturePb.CalendarResponse, error) {
- calendarList := make([]*model.Calendar, 0)
- if err := s.DB.Model(&model.Calendar{}).
- Where("show_day >= ?", req.ShowStartDay).
- Where("show_day <= ?", req.ShowEndDay).
- Where("is_show = ?", pasturePb.IsShow_Ok).
- Find(&calendarList).Error; err != nil {
- return nil, xerr.WithStack(err)
- }
- return &pasturePb.CalendarResponse{
- Code: http.StatusOK,
- Message: "ok",
- Data: model.CalendarSlice(calendarList).ToPB(),
- }, nil
- }
- func (s *StoreEntry) CalendarTableDetail(ctx context.Context, req *pasturePb.CalendarTableRequest) (interface{}, error) {
- if req.Start != time.Now().Format(model.LayoutDate2) {
- return nil, xerr.New("参数错误")
- }
- newCalendar := &model.Calendar{}
- if err := s.DB.Model(&model.Calendar{}).
- Where("calendar_type = ?", req.CalendarType).
- Where("show_day = ?", req.Start).
- Where("is_show = ?", pasturePb.IsShow_Ok).
- First(newCalendar).Error; err != nil {
- return nil, xerr.WithStack(err)
- }
- if newCalendar.Id == 0 {
- return nil, xerr.New("不存在该日历数据")
- }
- switch newCalendar.CalendarType {
- case pasturePb.CalendarType_Immunisation:
- case pasturePb.CalendarType_PG:
- case pasturePb.CalendarType_RnGH:
- case pasturePb.CalendarType_Pregnancy_Check:
- case pasturePb.CalendarType_WorkOrder:
- case pasturePb.CalendarType_Weaning:
- case pasturePb.CalendarType_Treatment:
- }
- return nil, nil
- }
|