work_order_master.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package model
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  6. "go.uber.org/zap"
  7. "kpt-pasture/config"
  8. "kpt-pasture/http/util"
  9. "strconv"
  10. "strings"
  11. "time"
  12. "github.com/hibiken/asynq"
  13. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  14. )
  15. const (
  16. QueueWorkOrder = "workOrder"
  17. TaskWorkOrder = "event:workOrder"
  18. )
  19. func AsynqQueueWorkOrder() asynq.Option {
  20. return asynq.Queue(QueueWorkOrder)
  21. }
  22. type WorkOrderMaster struct {
  23. Id int64 `json:"id"`
  24. Name string `json:"name"`
  25. CategoryId pasturePb.WorkOrderCategory_Kind `json:"categoryId"`
  26. CategoryName string `json:"categoryName"`
  27. Priority pasturePb.Priority_Kind `json:"priority"`
  28. Frequency pasturePb.WorkOrderFrequency_Kind `json:"frequency"`
  29. ExecTime string `json:"execTime"`
  30. SubscribeUnit pasturePb.WorkOrderSubscribeUnit_Kind `json:"subscribeUnit"`
  31. ExecPersons string `json:"execPersons"`
  32. ExecPersonNames string `json:"execPersonsNames"`
  33. WeekMonthValue string `json:"WeekMonthValue"`
  34. IsShow pasturePb.IsShow_Kind `json:"isShow"`
  35. Photos string `json:"photos"`
  36. Remarks string `json:"remarks"`
  37. OperationId int64 `json:"operationId"`
  38. OperationName string `json:"operationName"`
  39. CreatedAt int64 `json:"createdAt"`
  40. UpdatedAt int64 `json:"updatedAt"`
  41. }
  42. func (w *WorkOrderMaster) TableName() string {
  43. return "work_order_master"
  44. }
  45. func NewWorkOrderMaster(
  46. req *pasturePb.WorkOrderList,
  47. curUser *SystemUser,
  48. systemUserList []*SystemUser,
  49. workOrderCategoryMap map[pasturePb.WorkOrderCategory_Kind]string,
  50. ) *WorkOrderMaster {
  51. execPersonNames := make([]string, 0)
  52. if len(req.ExecPersons) > 0 {
  53. for _, vv := range systemUserList {
  54. for _, v := range req.ExecPersons {
  55. if int32(vv.Id) != v {
  56. continue
  57. }
  58. execPersonNames = append(execPersonNames, vv.Name)
  59. }
  60. for _, depId := range req.ExecDepartmental {
  61. if int64(depId) != vv.DeptId {
  62. continue
  63. }
  64. execPersonNames = append(execPersonNames, vv.Name)
  65. }
  66. }
  67. }
  68. weekMonthValue := ""
  69. if req.Frequency == pasturePb.WorkOrderFrequency_Weekly || req.Frequency == pasturePb.WorkOrderFrequency_Monthly {
  70. weekMonthValue = util.Int32SliceToString(req.WeekMonthValue, ",")
  71. }
  72. return &WorkOrderMaster{
  73. Name: req.Name,
  74. CategoryId: req.CategoryId,
  75. CategoryName: workOrderCategoryMap[req.CategoryId],
  76. Priority: req.Priority,
  77. ExecTime: req.ExecTime,
  78. SubscribeUnit: req.SubscribeUnit,
  79. ExecPersons: util.Int32SliceToString(req.ExecPersons, ","),
  80. ExecPersonNames: strings.Join(execPersonNames, ","),
  81. WeekMonthValue: weekMonthValue,
  82. IsShow: req.IsShow,
  83. Photos: strings.Join(req.Photos, ","),
  84. Frequency: req.Frequency,
  85. Remarks: req.Remarks,
  86. OperationId: curUser.Id,
  87. OperationName: curUser.Name,
  88. }
  89. }
  90. type TaskWorkOrderPayload struct {
  91. WorkOrderId int64 `json:"workOrderId"`
  92. }
  93. func NewTaskWorkOrderOption(processAt int64) []asynq.Option {
  94. return []asynq.Option{
  95. asynq.MaxRetry(3),
  96. AsynqQueueWorkOrder(),
  97. asynq.ProcessAt(time.Unix(processAt, 64)),
  98. }
  99. }
  100. func NewTaskWorkOrderPayload(id int64, execTime time.Duration) *asynq.Task {
  101. payload, _ := json.Marshal(TaskWorkOrderPayload{
  102. WorkOrderId: id,
  103. })
  104. processAt := time.Now().Add(execTime).Unix()
  105. // todo 测试用
  106. zaplog.Info("NewTaskWorkOrderPayload", zap.Any("config", config.Options()))
  107. return asynq.NewTask(fmt.Sprintf("xdmy1:%s", TaskWorkOrder), payload, NewTaskWorkOrderOption(processAt)...)
  108. }
  109. type WorkOrderMasterSlice []*WorkOrderMaster
  110. func (w WorkOrderMasterSlice) ToPB(
  111. priorityMap map[pasturePb.Priority_Kind]string,
  112. frequencyMap map[pasturePb.WorkOrderFrequency_Kind]string,
  113. subscribeUnitMap map[pasturePb.WorkOrderSubscribeUnit_Kind]string,
  114. weekMap map[pasturePb.Week_Kind]string,
  115. monthMap map[int32]string,
  116. ) []*pasturePb.WorkOrderList {
  117. res := make([]*pasturePb.WorkOrderList, len(w))
  118. for i, v := range w {
  119. execPersons, weekMonthValue := make([]int32, 0), make([]int32, 0)
  120. weekMonthValueName := make([]string, 0)
  121. if len(v.ExecPersons) > 0 {
  122. for _, personId := range strings.Split(v.ExecPersons, ",") {
  123. p, _ := strconv.Atoi(personId)
  124. execPersons = append(execPersons, int32(p))
  125. }
  126. }
  127. if len(v.WeekMonthValue) > 0 {
  128. for _, week := range strings.Split(v.WeekMonthValue, ",") {
  129. k, _ := strconv.Atoi(week)
  130. if v.Frequency == pasturePb.WorkOrderFrequency_Weekly {
  131. weekMonthValueName = append(weekMonthValueName, weekMap[pasturePb.Week_Kind(k)])
  132. }
  133. if v.Frequency == pasturePb.WorkOrderFrequency_Monthly {
  134. weekMonthValueName = append(weekMonthValueName, monthMap[int32(k)])
  135. }
  136. weekMonthValue = append(weekMonthValue, int32(k))
  137. }
  138. }
  139. res[i] = &pasturePb.WorkOrderList{
  140. Id: int32(v.Id),
  141. Name: v.Name,
  142. CategoryId: v.CategoryId,
  143. CategoryName: v.CategoryName,
  144. Priority: v.Priority,
  145. PriorityName: priorityMap[v.Priority],
  146. Frequency: v.Frequency,
  147. FrequencyName: frequencyMap[v.Frequency],
  148. ExecTime: v.ExecTime,
  149. SubscribeUnit: v.SubscribeUnit,
  150. SubscribeUnitName: subscribeUnitMap[v.SubscribeUnit],
  151. ExecPersons: execPersons,
  152. ExecPersonsNames: strings.Split(v.ExecPersonNames, ","),
  153. IsShow: v.IsShow,
  154. Photos: strings.Split(v.Photos, ","),
  155. WeekMonthValue: weekMonthValue,
  156. WeekMonthValueName: weekMonthValueName,
  157. Remarks: v.Remarks,
  158. OperatorId: int32(v.OperationId),
  159. OperatorName: v.OperationName,
  160. CreatedAt: int32(v.CreatedAt),
  161. UpdatedAt: int32(v.UpdatedAt),
  162. }
  163. }
  164. return res
  165. }