pasture_manage.go 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package backend
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "kpt-pasture/model"
  7. "net/http"
  8. "gitee.com/xuyiping_admin/pkg/xerr"
  9. "gorm.io/gorm"
  10. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  11. )
  12. func (s *StoreEntry) SearchBarnList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBarnResponse, error) {
  13. barnList := make([]*model.Bran, 0)
  14. var count int64 = 0
  15. pref := s.DB.Model(new(model.Bran)).Where("is_delete = ?", pasturePb.IsShow_Ok)
  16. if req.Name != "" {
  17. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  18. }
  19. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  20. Find(&barnList).Debug().Error; err != nil {
  21. return nil, xerr.WithStack(err)
  22. }
  23. configBarnTypeList := make([]*model.ConfigBarnType, 0)
  24. if err := s.DB.Model(new(model.ConfigBarnType)).Find(&configBarnTypeList).Error; err != nil {
  25. return nil, xerr.WithStack(err)
  26. }
  27. return &pasturePb.SearchBarnResponse{
  28. Code: http.StatusOK,
  29. Message: "ok",
  30. Data: &pasturePb.SearchBarnData{
  31. List: model.BarnSlice(barnList).ToPB(configBarnTypeList),
  32. Total: int32(count),
  33. PageSize: pagination.PageSize,
  34. Page: pagination.Page,
  35. },
  36. }, nil
  37. }
  38. func (s *StoreEntry) CreateOrUpdateBarn(ctx context.Context, req *pasturePb.SearchBarnList) error {
  39. if req.Id > 0 {
  40. barn := &model.Bran{Id: int64(req.Id)}
  41. if err := s.DB.Model(&model.Bran{}).First(barn).Error; err != nil {
  42. if !errors.Is(err, gorm.ErrRecordNotFound) {
  43. return xerr.WithStack(err)
  44. }
  45. }
  46. }
  47. if err := s.DB.Model(&model.Bran{}).Where(map[string]interface{}{
  48. "id": req.Id,
  49. }).Assign(map[string]interface{}{
  50. "name": req.Name,
  51. "remarks": req.Remarks,
  52. "barn_type": req.BarnTypeId,
  53. "lengths": req.Lengths,
  54. "widths": req.Widths,
  55. "doctrinal_capacity": req.DoctrinalCapacity,
  56. "bed_number": req.BedNumber,
  57. "neck_number": req.NeckNumber,
  58. "is_delete": pasturePb.IsShow_Ok,
  59. "is_show": pasturePb.IsShow_Ok,
  60. }).FirstOrCreate(&model.Bran{}).Error; err != nil {
  61. return xerr.WithStack(err)
  62. }
  63. return nil
  64. }
  65. func (s *StoreEntry) SearchBarnTypeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  66. barnTypeList := make([]*model.ConfigBarnType, 0)
  67. var count int64 = 0
  68. pref := s.DB.Model(new(model.ConfigBarnType))
  69. if req.Name != "" {
  70. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  71. }
  72. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  73. Find(&barnTypeList).Debug().Error; err != nil {
  74. return nil, xerr.WithStack(err)
  75. }
  76. return &pasturePb.SearchBaseConfigResponse{
  77. Code: http.StatusOK,
  78. Message: "ok",
  79. Data: &pasturePb.SearchBaseConfigData{
  80. List: model.ConfigBarnTypeSlice(barnTypeList).ToPB2(),
  81. Total: int32(count),
  82. PageSize: pagination.PageSize,
  83. Page: pagination.Page,
  84. },
  85. }, nil
  86. }
  87. func (s *StoreEntry) CreateOrUpdateBarnType(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  88. if req.Id > 0 {
  89. barn := &model.ConfigBarnType{Id: int64(req.Id)}
  90. if err := s.DB.Model(&model.ConfigBarnType{}).First(barn).Error; err != nil {
  91. if !errors.Is(err, gorm.ErrRecordNotFound) {
  92. return xerr.WithStack(err)
  93. }
  94. }
  95. }
  96. if err := s.DB.Model(&model.ConfigBarnType{}).Where(map[string]interface{}{
  97. "id": req.Id,
  98. }).Assign(map[string]interface{}{
  99. "name": req.Name,
  100. "remarks": req.Remarks,
  101. "is_show": pasturePb.IsShow_Ok,
  102. }).FirstOrCreate(&model.ConfigBarnType{}).Error; err != nil {
  103. return xerr.WithStack(err)
  104. }
  105. return nil
  106. }
  107. func (s *StoreEntry) SearchBreedStatusList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  108. breedStatusList := make([]*model.ConfigBreedStatus, 0)
  109. var count int64 = 0
  110. pref := s.DB.Model(new(model.ConfigBreedStatus))
  111. if req.Name != "" {
  112. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  113. }
  114. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  115. Find(&breedStatusList).Debug().Error; err != nil {
  116. return nil, xerr.WithStack(err)
  117. }
  118. return &pasturePb.SearchBaseConfigResponse{
  119. Code: http.StatusOK,
  120. Message: "ok",
  121. Data: &pasturePb.SearchBaseConfigData{
  122. List: model.ConfigBreedStatusSlice(breedStatusList).ToPB(),
  123. Total: int32(count),
  124. PageSize: pagination.PageSize,
  125. Page: pagination.Page,
  126. },
  127. }, nil
  128. }
  129. func (s *StoreEntry) CreateOrUpdateBreedStatus(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  130. if req.Id > 0 {
  131. barn := &model.ConfigBreedStatus{Id: int64(req.Id)}
  132. if err := s.DB.Model(&model.ConfigBreedStatus{}).First(barn).Error; err != nil {
  133. if !errors.Is(err, gorm.ErrRecordNotFound) {
  134. return xerr.WithStack(err)
  135. }
  136. }
  137. }
  138. if err := s.DB.Model(&model.ConfigBreedStatus{}).Where(map[string]interface{}{
  139. "id": req.Id,
  140. }).Assign(map[string]interface{}{
  141. "name": req.Name,
  142. "remarks": req.Remarks,
  143. "is_show": pasturePb.IsShow_Ok,
  144. }).FirstOrCreate(&model.ConfigBreedStatus{}).Error; err != nil {
  145. return xerr.WithStack(err)
  146. }
  147. return nil
  148. }
  149. func (s *StoreEntry) SearchCowKindList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  150. configCowKindList := make([]*model.ConfigCowKind, 0)
  151. var count int64 = 0
  152. pref := s.DB.Model(new(model.ConfigCowKind))
  153. if req.Name != "" {
  154. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  155. }
  156. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  157. Find(&configCowKindList).Debug().Error; err != nil {
  158. return nil, xerr.WithStack(err)
  159. }
  160. return &pasturePb.SearchBaseConfigResponse{
  161. Code: http.StatusOK,
  162. Message: "ok",
  163. Data: &pasturePb.SearchBaseConfigData{
  164. List: model.ConfigCowKindSlice(configCowKindList).ToPB(),
  165. Total: int32(count),
  166. PageSize: pagination.PageSize,
  167. Page: pagination.Page,
  168. },
  169. }, nil
  170. }
  171. func (s *StoreEntry) CreateOrUpdateCowKind(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  172. if req.Id > 0 {
  173. barn := &model.ConfigCowKind{Id: int64(req.Id)}
  174. if err := s.DB.Model(&model.ConfigCowKind{}).First(barn).Error; err != nil {
  175. if !errors.Is(err, gorm.ErrRecordNotFound) {
  176. return xerr.WithStack(err)
  177. }
  178. }
  179. }
  180. if err := s.DB.Model(&model.ConfigCowKind{}).Where(map[string]interface{}{
  181. "id": req.Id,
  182. }).Assign(map[string]interface{}{
  183. "name": req.Name,
  184. "remarks": req.Remarks,
  185. "is_show": pasturePb.IsShow_Ok,
  186. }).FirstOrCreate(&model.ConfigCowKind{}).Error; err != nil {
  187. return xerr.WithStack(err)
  188. }
  189. return nil
  190. }