pasture.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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. penList := make([]*model.Pen, 0)
  14. var count int64 = 0
  15. pref := s.DB.Model(new(model.Pen)).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(&penList).Error; err != nil {
  21. return nil, xerr.WithStack(err)
  22. }
  23. configBarnTypeList := make([]*model.ConfigPenType, 0)
  24. if err := s.DB.Model(new(model.ConfigPenType)).Find(&configBarnTypeList).Error; err != nil {
  25. return nil, xerr.WithStack(err)
  26. }
  27. return &pasturePb.SearchBarnResponse{
  28. Code: http.StatusOK,
  29. Msg: "ok",
  30. Data: &pasturePb.SearchBarnData{
  31. List: model.PenSlice(penList).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. userModel, err := s.GetUserModel(ctx)
  40. if err != nil {
  41. return xerr.WithStack(err)
  42. }
  43. if req.Id > 0 {
  44. barn := &model.Pen{Id: req.Id}
  45. if err = s.DB.Model(&model.Pen{}).First(barn).Error; err != nil {
  46. if !errors.Is(err, gorm.ErrRecordNotFound) {
  47. return xerr.WithStack(err)
  48. }
  49. }
  50. }
  51. if err = s.DB.Model(&model.Pen{}).Where(map[string]interface{}{
  52. "id": req.Id,
  53. }).Assign(map[string]interface{}{
  54. "name": req.Name,
  55. "remarks": req.Remarks,
  56. "pen_type": req.BarnTypeId,
  57. "lengths": req.Lengths,
  58. "widths": req.Widths,
  59. "doctrinal_capacity": req.DoctrinalCapacity,
  60. "bed_number": req.BedNumber,
  61. "neck_number": req.NeckNumber,
  62. "pasture_id": userModel.AppPasture.Id,
  63. "is_delete": pasturePb.IsShow_Ok,
  64. "is_show": pasturePb.IsShow_Ok,
  65. }).FirstOrCreate(&model.Pen{}).Error; err != nil {
  66. return xerr.WithStack(err)
  67. }
  68. return nil
  69. }
  70. func (s *StoreEntry) SearchBarnTypeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  71. barnTypeList := make([]*model.ConfigPenType, 0)
  72. var count int64 = 0
  73. pref := s.DB.Model(new(model.ConfigPenType))
  74. if req.Name != "" {
  75. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  76. }
  77. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  78. Find(&barnTypeList).Error; err != nil {
  79. return nil, xerr.WithStack(err)
  80. }
  81. return &pasturePb.SearchBaseConfigResponse{
  82. Code: http.StatusOK,
  83. Msg: "ok",
  84. Data: &pasturePb.SearchBaseConfigData{
  85. List: model.ConfigBarnTypeSlice(barnTypeList).ToPB(),
  86. Total: int32(count),
  87. PageSize: pagination.PageSize,
  88. Page: pagination.Page,
  89. },
  90. }, nil
  91. }
  92. func (s *StoreEntry) CreateOrUpdateBarnType(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  93. if req.Id > 0 {
  94. barn := &model.ConfigPenType{Id: int64(req.Id)}
  95. if err := s.DB.Model(&model.ConfigPenType{}).First(barn).Error; err != nil {
  96. if !errors.Is(err, gorm.ErrRecordNotFound) {
  97. return xerr.WithStack(err)
  98. }
  99. }
  100. }
  101. if err := s.DB.Model(&model.ConfigPenType{}).Where(map[string]interface{}{
  102. "id": req.Id,
  103. }).Assign(map[string]interface{}{
  104. "name": req.Name,
  105. "remarks": req.Remarks,
  106. "is_show": pasturePb.IsShow_Ok,
  107. }).FirstOrCreate(&model.ConfigPenType{}).Error; err != nil {
  108. return xerr.WithStack(err)
  109. }
  110. return nil
  111. }
  112. func (s *StoreEntry) SearchBreedStatusList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  113. breedStatusList := make([]*model.ConfigBreedStatus, 0)
  114. var count int64 = 0
  115. pref := s.DB.Model(new(model.ConfigBreedStatus))
  116. if req.Name != "" {
  117. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  118. }
  119. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  120. Find(&breedStatusList).Error; err != nil {
  121. return nil, xerr.WithStack(err)
  122. }
  123. return &pasturePb.SearchBaseConfigResponse{
  124. Code: http.StatusOK,
  125. Msg: "ok",
  126. Data: &pasturePb.SearchBaseConfigData{
  127. List: model.ConfigBreedStatusSlice(breedStatusList).ToPB(),
  128. Total: int32(count),
  129. PageSize: pagination.PageSize,
  130. Page: pagination.Page,
  131. },
  132. }, nil
  133. }
  134. func (s *StoreEntry) CreateOrUpdateBreedStatus(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  135. if req.Id > 0 {
  136. barn := &model.ConfigBreedStatus{Id: int64(req.Id)}
  137. if err := s.DB.Model(&model.ConfigBreedStatus{}).First(barn).Error; err != nil {
  138. if !errors.Is(err, gorm.ErrRecordNotFound) {
  139. return xerr.WithStack(err)
  140. }
  141. }
  142. }
  143. if err := s.DB.Model(&model.ConfigBreedStatus{}).Where(map[string]interface{}{
  144. "id": req.Id,
  145. }).Assign(map[string]interface{}{
  146. "name": req.Name,
  147. "remarks": req.Remarks,
  148. "is_show": pasturePb.IsShow_Ok,
  149. }).FirstOrCreate(&model.ConfigBreedStatus{}).Error; err != nil {
  150. return xerr.WithStack(err)
  151. }
  152. return nil
  153. }
  154. func (s *StoreEntry) SearchCowKindList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  155. configCowKindList := make([]*model.ConfigCowKind, 0)
  156. var count int64 = 0
  157. pref := s.DB.Model(new(model.ConfigCowKind))
  158. if req.Name != "" {
  159. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  160. }
  161. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  162. Find(&configCowKindList).Error; err != nil {
  163. return nil, xerr.WithStack(err)
  164. }
  165. return &pasturePb.SearchBaseConfigResponse{
  166. Code: http.StatusOK,
  167. Msg: "ok",
  168. Data: &pasturePb.SearchBaseConfigData{
  169. List: model.ConfigCowKindSlice(configCowKindList).ToPB(),
  170. Total: int32(count),
  171. PageSize: pagination.PageSize,
  172. Page: pagination.Page,
  173. },
  174. }, nil
  175. }
  176. func (s *StoreEntry) CreateOrUpdateCowKind(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  177. if req.Id > 0 {
  178. barn := &model.ConfigCowKind{Id: int64(req.Id)}
  179. if err := s.DB.Model(&model.ConfigCowKind{}).First(barn).Error; err != nil {
  180. if !errors.Is(err, gorm.ErrRecordNotFound) {
  181. return xerr.WithStack(err)
  182. }
  183. }
  184. }
  185. if err := s.DB.Model(&model.ConfigCowKind{}).Where(map[string]interface{}{
  186. "id": req.Id,
  187. }).Assign(map[string]interface{}{
  188. "name": req.Name,
  189. "remarks": req.Remarks,
  190. "is_show": pasturePb.IsShow_Ok,
  191. }).FirstOrCreate(&model.ConfigCowKind{}).Error; err != nil {
  192. return xerr.WithStack(err)
  193. }
  194. return nil
  195. }
  196. func (s *StoreEntry) SearchCowStatusList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  197. configCowStatusList := make([]*model.ConfigCowStatus, 0)
  198. var count int64 = 0
  199. pref := s.DB.Model(new(model.ConfigCowStatus))
  200. if req.Name != "" {
  201. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  202. }
  203. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  204. Find(&configCowStatusList).Error; err != nil {
  205. return nil, xerr.WithStack(err)
  206. }
  207. return &pasturePb.SearchBaseConfigResponse{
  208. Code: http.StatusOK,
  209. Msg: "ok",
  210. Data: &pasturePb.SearchBaseConfigData{
  211. List: model.ConfigCowStatusSlice(configCowStatusList).ToPB(),
  212. Total: int32(count),
  213. PageSize: pagination.PageSize,
  214. Page: pagination.Page,
  215. },
  216. }, nil
  217. }
  218. func (s *StoreEntry) CreateOrUpdateCowStatus(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  219. if req.Id > 0 {
  220. barn := &model.ConfigCowStatus{Id: int64(req.Id)}
  221. if err := s.DB.Model(&model.ConfigCowStatus{}).First(barn).Error; err != nil {
  222. if !errors.Is(err, gorm.ErrRecordNotFound) {
  223. return xerr.WithStack(err)
  224. }
  225. }
  226. }
  227. if err := s.DB.Model(&model.ConfigCowStatus{}).Where(map[string]interface{}{
  228. "id": req.Id,
  229. }).Assign(map[string]interface{}{
  230. "name": req.Name,
  231. "remarks": req.Remarks,
  232. "is_show": pasturePb.IsShow_Ok,
  233. }).FirstOrCreate(&model.ConfigCowStatus{}).Error; err != nil {
  234. return xerr.WithStack(err)
  235. }
  236. return nil
  237. }
  238. func (s *StoreEntry) SearchCowTypeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  239. configCowTypeList := make([]*model.ConfigCowType, 0)
  240. var count int64 = 0
  241. pref := s.DB.Model(new(model.ConfigCowType))
  242. if req.Name != "" {
  243. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  244. }
  245. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  246. Find(&configCowTypeList).Error; err != nil {
  247. return nil, xerr.WithStack(err)
  248. }
  249. return &pasturePb.SearchBaseConfigResponse{
  250. Code: http.StatusOK,
  251. Msg: "ok",
  252. Data: &pasturePb.SearchBaseConfigData{
  253. List: model.ConfigCowTypeSlice(configCowTypeList).ToPB(),
  254. Total: int32(count),
  255. PageSize: pagination.PageSize,
  256. Page: pagination.Page,
  257. },
  258. }, nil
  259. }
  260. func (s *StoreEntry) CreateOrUpdateCowType(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  261. if req.Id > 0 {
  262. barn := &model.ConfigCowType{Id: int64(req.Id)}
  263. if err := s.DB.Model(&model.ConfigCowType{}).First(barn).Error; err != nil {
  264. if !errors.Is(err, gorm.ErrRecordNotFound) {
  265. return xerr.WithStack(err)
  266. }
  267. }
  268. }
  269. if err := s.DB.Model(&model.ConfigCowType{}).Where(map[string]interface{}{
  270. "id": req.Id,
  271. }).Assign(map[string]interface{}{
  272. "name": req.Name,
  273. "remarks": req.Remarks,
  274. "is_show": pasturePb.IsShow_Ok,
  275. }).FirstOrCreate(&model.ConfigCowType{}).Error; err != nil {
  276. return xerr.WithStack(err)
  277. }
  278. return nil
  279. }
  280. func (s *StoreEntry) SearchTransferPenReasonList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  281. configTransferPenReasonList := make([]*model.ConfigTransferPenReason, 0)
  282. var count int64 = 0
  283. pref := s.DB.Model(new(model.ConfigTransferPenReason))
  284. if req.Name != "" {
  285. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  286. }
  287. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  288. Find(&configTransferPenReasonList).Error; err != nil {
  289. return nil, xerr.WithStack(err)
  290. }
  291. return &pasturePb.SearchBaseConfigResponse{
  292. Code: http.StatusOK,
  293. Msg: "ok",
  294. Data: &pasturePb.SearchBaseConfigData{
  295. List: model.ConfigTransferPenReasonSlice(configTransferPenReasonList).ToPB(),
  296. Total: int32(count),
  297. PageSize: pagination.PageSize,
  298. Page: pagination.Page,
  299. },
  300. }, nil
  301. }
  302. func (s *StoreEntry) CreateOrUpdateTransferPenReason(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  303. if req.Id > 0 {
  304. barn := &model.ConfigTransferPenReason{Id: int64(req.Id)}
  305. if err := s.DB.Model(&model.ConfigTransferPenReason{}).First(barn).Error; err != nil {
  306. if !errors.Is(err, gorm.ErrRecordNotFound) {
  307. return xerr.WithStack(err)
  308. }
  309. }
  310. }
  311. if err := s.DB.Model(&model.ConfigTransferPenReason{}).Where(map[string]interface{}{
  312. "id": req.Id,
  313. }).Assign(map[string]interface{}{
  314. "name": req.Name,
  315. "remarks": req.Remarks,
  316. "is_show": pasturePb.IsShow_Ok,
  317. }).FirstOrCreate(&model.ConfigTransferPenReason{}).Error; err != nil {
  318. return xerr.WithStack(err)
  319. }
  320. return nil
  321. }
  322. func (s *StoreEntry) SearchCowSourceList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  323. configCowSourceList := make([]*model.ConfigCowSource, 0)
  324. var count int64 = 0
  325. pref := s.DB.Model(new(model.ConfigCowSource))
  326. if req.Name != "" {
  327. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  328. }
  329. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  330. Find(&configCowSourceList).Error; err != nil {
  331. return nil, xerr.WithStack(err)
  332. }
  333. return &pasturePb.SearchBaseConfigResponse{
  334. Code: http.StatusOK,
  335. Msg: "ok",
  336. Data: &pasturePb.SearchBaseConfigData{
  337. List: model.ConfigCowSourceSlice(configCowSourceList).ToPB(),
  338. Total: int32(count),
  339. PageSize: pagination.PageSize,
  340. Page: pagination.Page,
  341. },
  342. }, nil
  343. }
  344. func (s *StoreEntry) CreateOrUpdateCowSource(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  345. if req.Id > 0 {
  346. barn := &model.ConfigCowSource{Id: int64(req.Id)}
  347. if err := s.DB.Model(&model.ConfigCowSource{}).First(barn).Error; err != nil {
  348. if !errors.Is(err, gorm.ErrRecordNotFound) {
  349. return xerr.WithStack(err)
  350. }
  351. }
  352. }
  353. if err := s.DB.Model(&model.ConfigCowSource{}).Where(map[string]interface{}{
  354. "id": req.Id,
  355. }).Assign(map[string]interface{}{
  356. "name": req.Name,
  357. "remarks": req.Remarks,
  358. "is_show": pasturePb.IsShow_Ok,
  359. }).FirstOrCreate(&model.ConfigCowSource{}).Error; err != nil {
  360. return xerr.WithStack(err)
  361. }
  362. return nil
  363. }