event_base.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. package backend
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "net/http"
  7. "strconv"
  8. "strings"
  9. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  10. "gitee.com/xuyiping_admin/pkg/xerr"
  11. "gorm.io/gorm"
  12. )
  13. func (s *StoreEntry) ParseCowIds(ctx context.Context, pastureId int64, cowIds string) ([]*model.Cow, error) {
  14. if len(cowIds) == 0 {
  15. return nil, xerr.Custom("cow id is required")
  16. }
  17. cowIdStr := strings.Split(cowIds, ",")
  18. var cowIdInts = make([]int64, 0)
  19. for _, v := range cowIdStr {
  20. cowId, err := strconv.ParseInt(v, 10, 64)
  21. if err != nil {
  22. return nil, xerr.Customf("错误的牛号: %s", v)
  23. }
  24. cowIdInts = append(cowIdInts, cowId)
  25. }
  26. cowList, err := s.GetCowInfoByCowIds(ctx, pastureId, cowIdInts)
  27. if err != nil {
  28. return nil, xerr.WithStack(err)
  29. }
  30. return cowList, nil
  31. }
  32. func (s *StoreEntry) EnterList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchEnterEventResponse, error) {
  33. userModel, err := s.GetUserModel(ctx)
  34. if err != nil {
  35. return nil, xerr.WithStack(err)
  36. }
  37. eventEnterList := make([]*model.EventEnter, 0)
  38. var count int64 = 0
  39. pref := s.DB.Model(new(model.EventEnter)).
  40. Where("pasture_id = ?", userModel.AppPasture.Id)
  41. if len(req.CowId) > 0 {
  42. cowIds := strings.Split(req.CowId, ",")
  43. pref.Where("cow_id IN ?", cowIds)
  44. }
  45. if req.EarNumber != "" {
  46. pref.Where("ear_number = ?", req.EarNumber)
  47. }
  48. if err = pref.Order("id desc").
  49. Count(&count).Limit(int(pagination.PageSize)).
  50. Offset(int(pagination.PageOffset)).
  51. Find(&eventEnterList).Error; err != nil {
  52. return nil, xerr.WithStack(err)
  53. }
  54. penMap := s.PenMap(ctx, userModel.AppPasture.Id)
  55. breedStatusMap := s.CowBreedStatusMap()
  56. cowSourceMap := s.CowSourceMap()
  57. cowTypeMap := s.CowTypeMap()
  58. cowKindMap := s.CowKindMap()
  59. return &pasturePb.SearchEnterEventResponse{
  60. Code: http.StatusOK,
  61. Msg: "ok",
  62. Data: &pasturePb.SearchEnterEventData{
  63. List: model.EventEnterSlice(eventEnterList).ToPB(penMap, breedStatusMap, cowSourceMap, cowTypeMap, cowKindMap),
  64. Total: int32(count),
  65. PageSize: pagination.PageSize,
  66. Page: pagination.Page,
  67. },
  68. }, nil
  69. }
  70. func (s *StoreEntry) CreateEnter(ctx context.Context, req *pasturePb.EventEnterRequest) (err error) {
  71. userModel, err := s.GetUserModel(ctx)
  72. if err != nil {
  73. return xerr.WithStack(err)
  74. }
  75. if err = s.EnterCheck(ctx, req); err != nil {
  76. return xerr.WithStack(err)
  77. }
  78. req.MessengerId = int32(userModel.SystemUser.Id)
  79. req.MessengerName = userModel.SystemUser.Name
  80. if req.OperationId > 0 {
  81. systemUser, _ := s.GetSystemUserById(ctx, int64(req.OperationId))
  82. req.OperationName = systemUser.Name
  83. }
  84. penMap := s.PenMap(ctx, userModel.AppPasture.Id)
  85. newCow := model.NewEnterCow(userModel.AppPasture.Id, req, penMap)
  86. defer func() {
  87. if err == nil {
  88. cowLogs := s.SubmitEventLog(ctx, userModel.AppPasture.Id, newCow, pasturePb.EventType_Enter, pasturePb.ExposeEstrusType_Invalid, req)
  89. s.DB.Table(cowLogs.TableName()).Create(cowLogs)
  90. }
  91. }()
  92. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  93. if err = tx.Create(newCow).Error; err != nil {
  94. return xerr.WithStack(err)
  95. }
  96. newEventEnter := model.NewEventEnter(userModel.AppPasture.Id, newCow.Id, req)
  97. if err = tx.Create(newEventEnter).Error; err != nil {
  98. return xerr.WithStack(err)
  99. }
  100. eventWeight := model.NewEventWeight(
  101. userModel.AppPasture.Id,
  102. newCow,
  103. userModel.SystemUser,
  104. &pasturePb.EventWeight{
  105. WeightAt: req.EnterAt,
  106. Remarks: "入场体重",
  107. OperationId: req.OperationId,
  108. OperationName: req.OperationName,
  109. Weight: req.Weight,
  110. })
  111. if err = tx.Create(eventWeight).Error; err != nil {
  112. return xerr.WithStack(err)
  113. }
  114. return nil
  115. }); err != nil {
  116. return xerr.WithStack(err)
  117. }
  118. return nil
  119. }
  120. func (s *StoreEntry) GroupTransferList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchTransferGroupEventResponse, error) {
  121. userModel, err := s.GetUserModel(ctx)
  122. if err != nil {
  123. return nil, xerr.WithStack(err)
  124. }
  125. eventGroupTransferList := make([]*pasturePb.EventTransferGroupData, 0)
  126. var count int64 = 0
  127. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventTransferGroup).TableName())).
  128. Select(`a.id,a.cow_id,a.pen_in_id as transfer_in_pen_id,a.pen_out_id as transfer_out_pen_id,a.lact,a.remarks,
  129. a.transfer_reason_id,a.transfer_reason_name,a.transfer_date,a.created_at,a.operation_id,a.operation_name,
  130. b.name as transfer_in_pen_name,c.name as transfer_out_pen_name,f.lact,f.ear_number`).
  131. Joins(fmt.Sprintf("JOIN %s AS b ON a.pen_in_id = b.id", new(model.Pen).TableName())).
  132. Joins(fmt.Sprintf("JOIN %s AS c on a.pen_out_id = c.id", new(model.Pen).TableName())).
  133. Joins(fmt.Sprintf("JOIN %s AS f ON a.cow_id = f.id", new(model.Cow).TableName())).
  134. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  135. if len(req.CowId) > 0 {
  136. cowIds := strings.Split(req.CowId, ",")
  137. pref.Where("a.cow_id IN ?", cowIds)
  138. }
  139. if req.EarNumber != "" {
  140. pref.Where("a.ear_number = ?", req.EarNumber)
  141. }
  142. if err = pref.Order("a.id desc").Group("a.id").
  143. Count(&count).Limit(int(pagination.PageSize)).
  144. Offset(int(pagination.PageOffset)).
  145. Find(&eventGroupTransferList).Error; err != nil {
  146. return nil, xerr.WithStack(err)
  147. }
  148. return &pasturePb.SearchTransferGroupEventResponse{
  149. Code: http.StatusOK,
  150. Msg: "ok",
  151. Data: &pasturePb.SearchTransferGroupEventData{
  152. List: eventGroupTransferList,
  153. Total: int32(count),
  154. PageSize: pagination.PageSize,
  155. Page: pagination.Page,
  156. },
  157. }, nil
  158. }
  159. func (s *StoreEntry) CreateGroupTransfer(ctx context.Context, req *pasturePb.TransferGroupEventRequest) (err error) {
  160. userModel, err := s.GetUserModel(ctx)
  161. if err != nil {
  162. return xerr.WithStack(err)
  163. }
  164. if len(req.Body) <= 0 {
  165. return xerr.Custom("请选择牛只数据")
  166. }
  167. if len(req.Body) > 50 {
  168. return xerr.Custom("一次最多只能转移50头牛")
  169. }
  170. transferReasonMap := s.GroupTransferReasonMap()
  171. penMap := s.PenMap(ctx, userModel.AppPasture.Id)
  172. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  173. for _, v := range req.Body {
  174. cow, err := s.GetCowInfoByEarNumber(ctx, userModel.AppPasture.Id, v.EarNumber)
  175. if err != nil {
  176. return xerr.WithStack(err)
  177. }
  178. // 转去栏舍和当前栏舍相同,则不处理
  179. if cow.PenId == v.TransferInPenId {
  180. return xerr.Custom("转入栏舍和牛只当前栏舍不能一致")
  181. }
  182. operationUser, err := s.GetSystemUserById(ctx, int64(v.OperationId))
  183. if err != nil {
  184. return xerr.WithStack(err)
  185. }
  186. newEventTransferGroup := model.NewEventTransferGroup(userModel.AppPasture.Id, cow, v, transferReasonMap, userModel.SystemUser, operationUser)
  187. if err = tx.Model(new(model.EventTransferGroup)).Create(newEventTransferGroup).Error; err != nil {
  188. return xerr.WithStack(err)
  189. }
  190. if err = s.DB.Model(cow).
  191. Updates(map[string]interface{}{
  192. "pen_id": v.TransferInPenId,
  193. "pen_name": penMap[v.TransferReasonId].Name,
  194. }).Error; err != nil {
  195. return xerr.WithStack(err)
  196. }
  197. // 事件日志
  198. cowLogs := s.SubmitEventLog(ctx, userModel.AppPasture.Id, cow, pasturePb.EventType_Transfer_Ben, pasturePb.ExposeEstrusType_Invalid, newEventTransferGroup)
  199. if err = tx.Table(cowLogs.TableName()).Create(cowLogs).Error; err != nil {
  200. return xerr.WithStack(err)
  201. }
  202. }
  203. return nil
  204. }); err != nil {
  205. return xerr.WithStack(err)
  206. }
  207. return nil
  208. }
  209. func (s *StoreEntry) BodyScoreList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBodyScoreEventResponse, error) {
  210. userModel, err := s.GetUserModel(ctx)
  211. if err != nil {
  212. return nil, xerr.WithStack(err)
  213. }
  214. bodyScoreList := make([]*pasturePb.BodyScoreList, 0)
  215. var count int64 = 0
  216. pref := s.DB.Model(new(model.EventBodyScore)).
  217. Select("*,score as body_score").
  218. Where("pasture_id = ?", userModel.AppPasture.Id)
  219. if len(req.CowId) > 0 {
  220. cowIds := strings.Split(req.CowId, ",")
  221. pref.Where("cow_id IN ?", cowIds)
  222. }
  223. if req.EarNumber != "" {
  224. pref.Where("ear_number = ?", req.EarNumber)
  225. }
  226. if err = pref.Order("id desc").
  227. Count(&count).Limit(int(pagination.PageSize)).
  228. Offset(int(pagination.PageOffset)).
  229. Find(&bodyScoreList).Error; err != nil {
  230. return nil, xerr.WithStack(err)
  231. }
  232. return &pasturePb.SearchBodyScoreEventResponse{
  233. Code: http.StatusOK,
  234. Msg: "ok",
  235. Data: &pasturePb.SearchBodyScoreData{
  236. List: bodyScoreList,
  237. Total: int32(count),
  238. PageSize: pagination.PageSize,
  239. Page: pagination.Page,
  240. },
  241. }, nil
  242. }
  243. func (s *StoreEntry) CreateBodyScore(ctx context.Context, req *pasturePb.BodyScoreEventRequest) error {
  244. if req.CowId <= 0 {
  245. return xerr.Custom("请选择相关牛只")
  246. }
  247. userModel, err := s.GetUserModel(ctx)
  248. if err != nil {
  249. return xerr.WithStack(err)
  250. }
  251. operationUser, err := s.GetSystemUserById(ctx, int64(req.OperationId))
  252. if err != nil {
  253. return xerr.WithStack(err)
  254. }
  255. req.OperationName = operationUser.Name
  256. cowInfo, err := s.GetCowInfoByCowId(ctx, userModel.AppPasture.Id, int64(req.CowId))
  257. if err != nil {
  258. return xerr.WithStack(err)
  259. }
  260. bodyScourEvent := model.NewEventBodyScore(cowInfo, userModel.AppPasture.Id, userModel.SystemUser, req)
  261. return s.DB.Model(new(model.EventBodyScore)).Create(bodyScourEvent).Error
  262. }
  263. func (s *StoreEntry) WeightList(ctx context.Context, req *pasturePb.SearchEventRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchWeightEventResponse, error) {
  264. userModel, err := s.GetUserModel(ctx)
  265. if err != nil {
  266. return nil, xerr.WithStack(err)
  267. }
  268. weightList := make([]*pasturePb.SearchWeightList, 0)
  269. var count int64 = 0
  270. pref := s.DB.Table(fmt.Sprintf("%s as a", new(model.EventWeight).TableName())).
  271. Select(`a.id,a.cow_id,a.ear_number,ROUND(a.weight/1000, 2) as weight,a.height,a.lact,a.day_age,a.weight_at,a.remarks,a.created_at,
  272. a.updated_at,a.message_id,a.operation_id,a.message_name,a.operation_name`).
  273. Where("a.pasture_id = ?", userModel.AppPasture.Id)
  274. if len(req.CowId) > 0 {
  275. cowIds := strings.Split(req.CowId, ",")
  276. pref.Where("a.cow_id IN ?", cowIds)
  277. }
  278. if req.EarNumber != "" {
  279. pref.Where("a.ear_number = ?", req.EarNumber)
  280. }
  281. if err = pref.Order("a.id desc").
  282. Count(&count).Limit(int(pagination.PageSize)).
  283. Offset(int(pagination.PageOffset)).
  284. Find(&weightList).Error; err != nil {
  285. return nil, xerr.WithStack(err)
  286. }
  287. return &pasturePb.SearchWeightEventResponse{
  288. Code: http.StatusOK,
  289. Msg: "ok",
  290. Data: &pasturePb.SearchWeightData{
  291. List: weightList,
  292. Total: int32(count),
  293. PageSize: pagination.PageSize,
  294. Page: pagination.Page,
  295. },
  296. }, nil
  297. }
  298. func (s *StoreEntry) WeightBatch(ctx context.Context, req *pasturePb.BatchEventWeight) (err error) {
  299. userModel, err := s.GetUserModel(ctx)
  300. if err != nil {
  301. return xerr.WithStack(err)
  302. }
  303. if len(req.Items) <= 0 {
  304. return xerr.Custom("称重数据不能为空")
  305. }
  306. if len(req.Items) > 50 {
  307. return xerr.Custom("一次最多只能转移50头牛")
  308. }
  309. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  310. for _, item := range req.Items {
  311. cow, err := s.GetCowInfoByEarNumber(ctx, userModel.AppPasture.Id, item.EarNumber)
  312. if err != nil {
  313. return xerr.WithStack(err)
  314. }
  315. // 更新牛只信息
  316. cow.EventWeightUpdate(int64(item.Weight*1000), int64(item.WeightAt))
  317. if err = tx.Model(new(model.Cow)).
  318. Select("last_second_weight_at", "last_second_weight", "last_weight_at", "current_weight").
  319. Where("id = ?", cow.Id).
  320. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  321. Updates(cow).Error; err != nil {
  322. return xerr.WithStack(err)
  323. }
  324. operationUser, _ := s.GetSystemUserById(ctx, int64(item.OperationId))
  325. item.OperationName = operationUser.Name
  326. // 创建牛只的体重记录
  327. eventWeight := model.NewEventWeight(userModel.AppPasture.Id, cow, userModel.SystemUser, item)
  328. if err = tx.Create(eventWeight).Error; err != nil {
  329. return xerr.WithStack(err)
  330. }
  331. cowLogs := s.SubmitEventLog(ctx, userModel.AppPasture.Id, cow, pasturePb.EventType_Weight, pasturePb.ExposeEstrusType_Invalid, item)
  332. if err = tx.Table(cowLogs.TableName()).Create(cowLogs).Error; err != nil {
  333. return xerr.WithStack(err)
  334. }
  335. }
  336. return nil
  337. }); err != nil {
  338. return xerr.WithStack(err)
  339. }
  340. return nil
  341. }