prescription.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 Prescription struct {
  9. Id int64 `json:"id"`
  10. Name string `json:"name"`
  11. ApplicableDisease string `json:"applicable_disease"`
  12. UseDays int32 `json:"use_days"`
  13. UseCount int32 `json:"use_count"`
  14. MeatExpiredDays int32 `json:"meat_expired_days"`
  15. MilkExpiredDays int32 `json:"milk_expired_days"`
  16. IsShow pasturePb.IsShow_Kind `json:"is_show"`
  17. Remarks string `json:"remarks"`
  18. OperationId int64 `json:"operation_id"`
  19. CreatedAt int64 `json:"created_at"`
  20. UpdatedAt int64 `json:"updated_at"`
  21. }
  22. func (p *Prescription) TableName() string {
  23. return "prescription"
  24. }
  25. type ApplicableDisease struct {
  26. DiseaseId int64 `json:"disease_id"`
  27. DiseaseName string `json:"disease_name"`
  28. }
  29. func NewPrescription(req *pasturePb.PrescriptionRequest, applicableDisease string, useDays, meatExpiredDays, milkExpiredDays int32, operationId int64) *Prescription {
  30. return &Prescription{
  31. Name: req.Name,
  32. ApplicableDisease: applicableDisease,
  33. UseDays: useDays,
  34. UseCount: 0,
  35. MeatExpiredDays: meatExpiredDays,
  36. MilkExpiredDays: milkExpiredDays,
  37. IsShow: req.IsShow,
  38. Remarks: req.Remarks,
  39. OperationId: operationId,
  40. }
  41. }
  42. type PrescriptionSlice []*Prescription
  43. func (p PrescriptionSlice) ToPB(userList []*SystemUser, prescriptionDrugsList []*PrescriptionDrugs) []*pasturePb.SearchPrescriptionList {
  44. res := make([]*pasturePb.SearchPrescriptionList, len(p))
  45. for i, v := range p {
  46. operationName := ""
  47. for _, u := range userList {
  48. if u.Id == v.OperationId {
  49. operationName = u.Name
  50. break
  51. }
  52. }
  53. drugsList := make([]*pasturePb.PrescriptionDrugsList, 0)
  54. for _, d := range prescriptionDrugsList {
  55. if d.PrescriptionId != v.Id {
  56. continue
  57. }
  58. drugsList = append(drugsList, &pasturePb.PrescriptionDrugsList{
  59. Id: int32(d.Id),
  60. DrugsId: int32(d.DrugsId),
  61. DrugsName: d.DrugsName,
  62. Unit: d.Unit,
  63. UnitName: d.UnitName,
  64. Dosages: d.Dosages,
  65. UseDays: d.UseDays,
  66. Specs: d.Specs,
  67. })
  68. }
  69. applicableDiseaseList := make([]*ApplicableDisease, 0)
  70. err := json.Unmarshal([]byte(v.ApplicableDisease), &applicableDiseaseList)
  71. if err != nil {
  72. zaplog.Error("PrescriptionSliceToPB", zap.Any("err", err))
  73. }
  74. applicableDiseaseNames := make([]string, 0)
  75. applicableDiseaseIds := make([]int32, 0)
  76. for _, a := range applicableDiseaseList {
  77. applicableDiseaseNames = append(applicableDiseaseNames, a.DiseaseName)
  78. applicableDiseaseIds = append(applicableDiseaseIds, int32(a.DiseaseId))
  79. }
  80. res[i] = &pasturePb.SearchPrescriptionList{
  81. Id: int32(v.Id),
  82. Name: v.Name,
  83. ApplicableDisease: v.ApplicableDisease,
  84. ApplicableDiseaseIds: applicableDiseaseIds,
  85. ApplicableDiseaseNames: applicableDiseaseNames,
  86. UseDays: v.UseDays,
  87. UseCount: v.UseCount,
  88. MeatExpiredDays: v.MeatExpiredDays,
  89. MilkExpiredDays: v.MilkExpiredDays,
  90. IsShow: v.IsShow,
  91. Remarks: v.Remarks,
  92. OperationId: int32(v.OperationId),
  93. OperationName: operationName,
  94. CreatedAt: int32(v.CreatedAt),
  95. UpdatedAt: int32(v.UpdatedAt),
  96. DrugsList: drugsList,
  97. }
  98. }
  99. return res
  100. }