event_cow_treatment.go 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. package model
  2. import (
  3. "encoding/json"
  4. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  5. "go.uber.org/zap"
  6. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  7. )
  8. type EventCowTreatment struct {
  9. Id int64 `json:"id"`
  10. PastureId int64 `json:"pastureId"`
  11. CowId int64 `json:"cowId"`
  12. CowDiseaseId int64 `json:"cowDiseaseId"`
  13. DiseaseId int64 `json:"diseaseId"`
  14. DiseaseName string `json:"diseaseName"`
  15. DiseaseType int32 `json:"diseaseType"`
  16. DiseaseTypeName string `json:"diseaseTypeName"`
  17. PrescriptionId int32 `json:"prescriptionId"`
  18. PrescriptionName string `json:"prescriptionName"`
  19. PrescriptionDetail string `json:"prescriptionDetail"`
  20. TreatmentResult pasturePb.TreatmentResult_Kind `json:"treatmentResult"`
  21. OperationId int64 `json:"operationId"`
  22. OperationName string `json:"operationName"`
  23. MessageId int64 `json:"messageId"`
  24. MessageName string `json:"messageName"`
  25. Remarks string `json:"remarks"`
  26. TreatmentAt int64 `json:"treatmentAt"`
  27. CreatedAt int64 `json:"createdAt"`
  28. UpdatedAt int64 `json:"updatedAt"`
  29. }
  30. func (e *EventCowTreatment) TableName() string {
  31. return "event_cow_treatment"
  32. }
  33. func NewEventCowTreatment(
  34. prescription *Prescription,
  35. req *pasturePb.CowTreatmentRequest,
  36. diseaseTypeMap map[int32]string,
  37. operation, currentUser *SystemUser,
  38. ) *EventCowTreatment {
  39. b, _ := json.Marshal(req.PrescriptionDetail)
  40. return &EventCowTreatment{
  41. PastureId: currentUser.PastureId,
  42. CowId: int64(req.CowId),
  43. CowDiseaseId: int64(req.Id),
  44. DiseaseId: int64(req.DiseaseId),
  45. DiseaseName: req.DiseaseName,
  46. DiseaseType: req.DiseaseType,
  47. DiseaseTypeName: diseaseTypeMap[req.DiseaseType],
  48. PrescriptionId: req.PrescriptionId,
  49. PrescriptionName: prescription.Name,
  50. PrescriptionDetail: string(b),
  51. TreatmentResult: req.TreatmentResult,
  52. OperationId: operation.Id,
  53. OperationName: operation.Name,
  54. MessageId: currentUser.Id,
  55. MessageName: currentUser.Name,
  56. Remarks: req.Remarks,
  57. }
  58. }
  59. func NewEventCowCurableTreatment(currUser, operationUser *SystemUser, cowDisease *EventCowDisease, remarks string, curableAt int64) *EventCowTreatment {
  60. return &EventCowTreatment{
  61. PastureId: currUser.PastureId,
  62. CowId: cowDisease.CowId,
  63. CowDiseaseId: cowDisease.Id,
  64. DiseaseId: int64(cowDisease.DiseaseId),
  65. DiseaseName: cowDisease.DiseaseName,
  66. TreatmentResult: pasturePb.TreatmentResult_Curable,
  67. OperationId: operationUser.Id,
  68. OperationName: operationUser.Name,
  69. Remarks: remarks,
  70. TreatmentAt: curableAt,
  71. }
  72. }
  73. type EventCowTreatmentSlice []*EventCowTreatment
  74. func (e EventCowTreatmentSlice) ToPB(eventCowDiseaseList []*EventCowDisease) []*pasturePb.EventCowTreatment {
  75. res := make([]*pasturePb.EventCowTreatment, len(e))
  76. for i, v := range e {
  77. prescriptionDetail := make([]*pasturePb.PrescriptionDrugsList, 0)
  78. if v.PrescriptionDetail != "" {
  79. err := json.Unmarshal([]byte(v.PrescriptionDetail), &prescriptionDetail)
  80. if err != nil {
  81. zaplog.Error("EventCowTreatmentSlice", zap.Any("err", err))
  82. }
  83. }
  84. eventCowTreatment := &pasturePb.EventCowTreatment{
  85. CowId: int32(v.CowId),
  86. CowDiseaseId: int32(v.CowDiseaseId),
  87. PrescriptionId: v.PrescriptionId,
  88. PrescriptionName: v.PrescriptionName,
  89. PrescriptionDetail: prescriptionDetail,
  90. TreatmentResult: 0,
  91. OperationId: int32(v.OperationId),
  92. OperationName: v.OperationName,
  93. Remarks: v.Remarks,
  94. CreatedAt: int32(v.CreatedAt),
  95. UpdatedAt: int32(v.UpdatedAt),
  96. DiseaseId: int32(v.DiseaseId),
  97. Id: int32(v.Id),
  98. }
  99. for _, d := range eventCowDiseaseList {
  100. if v.CowDiseaseId != d.Id {
  101. continue
  102. }
  103. eventCowTreatment.DiseaseName = d.DiseaseName
  104. eventCowTreatment.DiseaseAt = int32(d.DiseaseAt)
  105. }
  106. res[i] = eventCowTreatment
  107. }
  108. return res
  109. }