work_order_master.go 6.0 KB

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