|
@@ -14,21 +14,21 @@ import (
|
|
|
)
|
|
|
|
|
|
func (s *StoreEntry) SearchBarnList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBarnResponse, error) {
|
|
|
- barnList := make([]*model.Bran, 0)
|
|
|
+ penList := make([]*model.Pen, 0)
|
|
|
var count int64 = 0
|
|
|
|
|
|
- pref := s.DB.Model(new(model.Bran)).Where("is_delete = ?", pasturePb.IsShow_Ok)
|
|
|
+ pref := s.DB.Model(new(model.Pen)).Where("is_delete = ?", pasturePb.IsShow_Ok)
|
|
|
if req.Name != "" {
|
|
|
pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&barnList).Debug().Error; err != nil {
|
|
|
+ Find(&penList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
|
- configBarnTypeList := make([]*model.ConfigBarnType, 0)
|
|
|
- if err := s.DB.Model(new(model.ConfigBarnType)).Find(&configBarnTypeList).Error; err != nil {
|
|
|
+ configBarnTypeList := make([]*model.ConfigPenType, 0)
|
|
|
+ if err := s.DB.Model(new(model.ConfigPenType)).Find(&configBarnTypeList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -36,7 +36,7 @@ func (s *StoreEntry) SearchBarnList(ctx context.Context, req *pasturePb.SearchNa
|
|
|
Code: http.StatusOK,
|
|
|
Message: "ok",
|
|
|
Data: &pasturePb.SearchBarnData{
|
|
|
- List: model.BarnSlice(barnList).ToPB(configBarnTypeList),
|
|
|
+ List: model.PenSlice(penList).ToPB(configBarnTypeList),
|
|
|
Total: int32(count),
|
|
|
PageSize: pagination.PageSize,
|
|
|
Page: pagination.Page,
|
|
@@ -46,15 +46,15 @@ func (s *StoreEntry) SearchBarnList(ctx context.Context, req *pasturePb.SearchNa
|
|
|
|
|
|
func (s *StoreEntry) CreateOrUpdateBarn(ctx context.Context, req *pasturePb.SearchBarnList) error {
|
|
|
if req.Id > 0 {
|
|
|
- barn := &model.Bran{Id: int64(req.Id)}
|
|
|
- if err := s.DB.Model(&model.Bran{}).First(barn).Error; err != nil {
|
|
|
+ barn := &model.Pen{Id: int64(req.Id)}
|
|
|
+ if err := s.DB.Model(&model.Pen{}).First(barn).Error; err != nil {
|
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if err := s.DB.Model(&model.Bran{}).Where(map[string]interface{}{
|
|
|
+ if err := s.DB.Model(&model.Pen{}).Where(map[string]interface{}{
|
|
|
"id": req.Id,
|
|
|
}).Assign(map[string]interface{}{
|
|
|
"name": req.Name,
|
|
@@ -67,23 +67,23 @@ func (s *StoreEntry) CreateOrUpdateBarn(ctx context.Context, req *pasturePb.Sear
|
|
|
"neck_number": req.NeckNumber,
|
|
|
"is_delete": pasturePb.IsShow_Ok,
|
|
|
"is_show": pasturePb.IsShow_Ok,
|
|
|
- }).FirstOrCreate(&model.Bran{}).Error; err != nil {
|
|
|
+ }).FirstOrCreate(&model.Pen{}).Error; err != nil {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
func (s *StoreEntry) SearchBarnTypeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
|
|
|
- barnTypeList := make([]*model.ConfigBarnType, 0)
|
|
|
+ barnTypeList := make([]*model.ConfigPenType, 0)
|
|
|
var count int64 = 0
|
|
|
|
|
|
- pref := s.DB.Model(new(model.ConfigBarnType))
|
|
|
+ pref := s.DB.Model(new(model.ConfigPenType))
|
|
|
if req.Name != "" {
|
|
|
pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&barnTypeList).Debug().Error; err != nil {
|
|
|
+ Find(&barnTypeList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -91,7 +91,7 @@ func (s *StoreEntry) SearchBarnTypeList(ctx context.Context, req *pasturePb.Sear
|
|
|
Code: http.StatusOK,
|
|
|
Message: "ok",
|
|
|
Data: &pasturePb.SearchBaseConfigData{
|
|
|
- List: model.ConfigBarnTypeSlice(barnTypeList).ToPB2(),
|
|
|
+ List: model.ConfigBarnTypeSlice(barnTypeList).ToPB(),
|
|
|
Total: int32(count),
|
|
|
PageSize: pagination.PageSize,
|
|
|
Page: pagination.Page,
|
|
@@ -101,21 +101,21 @@ func (s *StoreEntry) SearchBarnTypeList(ctx context.Context, req *pasturePb.Sear
|
|
|
|
|
|
func (s *StoreEntry) CreateOrUpdateBarnType(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
|
|
|
if req.Id > 0 {
|
|
|
- barn := &model.ConfigBarnType{Id: int64(req.Id)}
|
|
|
- if err := s.DB.Model(&model.ConfigBarnType{}).First(barn).Error; err != nil {
|
|
|
+ barn := &model.ConfigPenType{Id: int64(req.Id)}
|
|
|
+ if err := s.DB.Model(&model.ConfigPenType{}).First(barn).Error; err != nil {
|
|
|
if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if err := s.DB.Model(&model.ConfigBarnType{}).Where(map[string]interface{}{
|
|
|
+ if err := s.DB.Model(&model.ConfigPenType{}).Where(map[string]interface{}{
|
|
|
"id": req.Id,
|
|
|
}).Assign(map[string]interface{}{
|
|
|
"name": req.Name,
|
|
|
"remarks": req.Remarks,
|
|
|
"is_show": pasturePb.IsShow_Ok,
|
|
|
- }).FirstOrCreate(&model.ConfigBarnType{}).Error; err != nil {
|
|
|
+ }).FirstOrCreate(&model.ConfigPenType{}).Error; err != nil {
|
|
|
return xerr.WithStack(err)
|
|
|
}
|
|
|
return nil
|
|
@@ -131,7 +131,7 @@ func (s *StoreEntry) SearchBreedStatusList(ctx context.Context, req *pasturePb.S
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&breedStatusList).Debug().Error; err != nil {
|
|
|
+ Find(&breedStatusList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -179,7 +179,7 @@ func (s *StoreEntry) SearchCowKindList(ctx context.Context, req *pasturePb.Searc
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&configCowKindList).Debug().Error; err != nil {
|
|
|
+ Find(&configCowKindList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -227,7 +227,7 @@ func (s *StoreEntry) SearchCowStatusList(ctx context.Context, req *pasturePb.Sea
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&configCowStatusList).Debug().Error; err != nil {
|
|
|
+ Find(&configCowStatusList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -275,7 +275,7 @@ func (s *StoreEntry) SearchCowTypeList(ctx context.Context, req *pasturePb.Searc
|
|
|
}
|
|
|
|
|
|
if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
- Find(&configCowTypeList).Debug().Error; err != nil {
|
|
|
+ Find(&configCowTypeList).Error; err != nil {
|
|
|
return nil, xerr.WithStack(err)
|
|
|
}
|
|
|
|
|
@@ -312,3 +312,99 @@ func (s *StoreEntry) CreateOrUpdateCowType(ctx context.Context, req *pasturePb.S
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
+
|
|
|
+func (s *StoreEntry) SearchTransferPenReasonList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
|
|
|
+ configTransferPenReasonList := make([]*model.ConfigTransferPenReason, 0)
|
|
|
+ var count int64 = 0
|
|
|
+
|
|
|
+ pref := s.DB.Model(new(model.ConfigTransferPenReason))
|
|
|
+ if req.Name != "" {
|
|
|
+ pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
|
|
|
+ }
|
|
|
+
|
|
|
+ if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
+ Find(&configTransferPenReasonList).Error; err != nil {
|
|
|
+ return nil, xerr.WithStack(err)
|
|
|
+ }
|
|
|
+
|
|
|
+ return &pasturePb.SearchBaseConfigResponse{
|
|
|
+ Code: http.StatusOK,
|
|
|
+ Message: "ok",
|
|
|
+ Data: &pasturePb.SearchBaseConfigData{
|
|
|
+ List: model.ConfigTransferPenReasonSlice(configTransferPenReasonList).ToPB(),
|
|
|
+ Total: int32(count),
|
|
|
+ PageSize: pagination.PageSize,
|
|
|
+ Page: pagination.Page,
|
|
|
+ },
|
|
|
+ }, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *StoreEntry) CreateOrUpdateTransferPenReason(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
|
|
|
+ if req.Id > 0 {
|
|
|
+ barn := &model.ConfigTransferPenReason{Id: int64(req.Id)}
|
|
|
+ if err := s.DB.Model(&model.ConfigTransferPenReason{}).First(barn).Error; err != nil {
|
|
|
+ if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
+ return xerr.WithStack(err)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if err := s.DB.Model(&model.ConfigTransferPenReason{}).Where(map[string]interface{}{
|
|
|
+ "id": req.Id,
|
|
|
+ }).Assign(map[string]interface{}{
|
|
|
+ "name": req.Name,
|
|
|
+ "remarks": req.Remarks,
|
|
|
+ "is_show": pasturePb.IsShow_Ok,
|
|
|
+ }).FirstOrCreate(&model.ConfigTransferPenReason{}).Error; err != nil {
|
|
|
+ return xerr.WithStack(err)
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *StoreEntry) SearchCowSourceList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
|
|
|
+ configCowSourceList := make([]*model.ConfigCowSource, 0)
|
|
|
+ var count int64 = 0
|
|
|
+
|
|
|
+ pref := s.DB.Model(new(model.ConfigCowSource))
|
|
|
+ if req.Name != "" {
|
|
|
+ pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
|
|
|
+ }
|
|
|
+
|
|
|
+ if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
|
|
|
+ Find(&configCowSourceList).Error; err != nil {
|
|
|
+ return nil, xerr.WithStack(err)
|
|
|
+ }
|
|
|
+
|
|
|
+ return &pasturePb.SearchBaseConfigResponse{
|
|
|
+ Code: http.StatusOK,
|
|
|
+ Message: "ok",
|
|
|
+ Data: &pasturePb.SearchBaseConfigData{
|
|
|
+ List: model.ConfigCowSourceSlice(configCowSourceList).ToPB(),
|
|
|
+ Total: int32(count),
|
|
|
+ PageSize: pagination.PageSize,
|
|
|
+ Page: pagination.Page,
|
|
|
+ },
|
|
|
+ }, nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *StoreEntry) CreateOrUpdateCowSource(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
|
|
|
+ if req.Id > 0 {
|
|
|
+ barn := &model.ConfigCowSource{Id: int64(req.Id)}
|
|
|
+ if err := s.DB.Model(&model.ConfigCowSource{}).First(barn).Error; err != nil {
|
|
|
+ if !errors.Is(err, gorm.ErrRecordNotFound) {
|
|
|
+ return xerr.WithStack(err)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if err := s.DB.Model(&model.ConfigCowSource{}).Where(map[string]interface{}{
|
|
|
+ "id": req.Id,
|
|
|
+ }).Assign(map[string]interface{}{
|
|
|
+ "name": req.Name,
|
|
|
+ "remarks": req.Remarks,
|
|
|
+ "is_show": pasturePb.IsShow_Ok,
|
|
|
+ }).FirstOrCreate(&model.ConfigCowSource{}).Error; err != nil {
|
|
|
+ return xerr.WithStack(err)
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|