event_base.go 12 KB

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