prescription.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. package backend
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "kpt-pasture/model"
  7. "net/http"
  8. "strconv"
  9. "strings"
  10. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  11. "go.uber.org/zap"
  12. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  13. "gitee.com/xuyiping_admin/pkg/xerr"
  14. "gorm.io/gorm"
  15. )
  16. func (s *StoreEntry) CreateOrUpdateSameTime(ctx context.Context, req *pasturePb.SearchSameTimeList) error {
  17. currentUser, _ := s.GetCurrentSystemUser(ctx)
  18. semeTime := model.NewSameTime(currentUser, req)
  19. if req.Id > 0 {
  20. if err := s.DB.Model(new(model.SameTime)).Where("id = ?", req.Id).Updates(map[string]interface{}{
  21. "name": semeTime.Name,
  22. "week_type": semeTime.WeekType,
  23. "cow_type": semeTime.CowType,
  24. "postpartum_days_start": semeTime.PostpartumDaysStart,
  25. "postpartum_days_end": semeTime.PostpartumDaysEnd,
  26. "collate_nodes": semeTime.CollateNodes,
  27. "is_show": semeTime.IsShow,
  28. "remarks": semeTime.Remarks,
  29. }).Error; err != nil {
  30. return xerr.WithStack(err)
  31. }
  32. } else {
  33. if err := s.DB.Create(&semeTime).Error; err != nil {
  34. return xerr.WithStack(err)
  35. }
  36. }
  37. return nil
  38. }
  39. func (s *StoreEntry) SearchSameTimeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SameTimeResponse, error) {
  40. semeTimeList := make([]*model.SameTime, 0)
  41. var count int64 = 0
  42. pref := s.DB.Model(new(model.SameTime))
  43. if req.Name != "" {
  44. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  45. }
  46. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  47. Find(&semeTimeList).Error; err != nil {
  48. return nil, xerr.WithStack(err)
  49. }
  50. weekMap := s.WeekMap()
  51. sameTimeCowTypeMap := s.SameTimeCowTypeMap()
  52. systemUser, _ := s.SystemUserList(ctx)
  53. return &pasturePb.SameTimeResponse{
  54. Code: http.StatusOK,
  55. Message: "ok",
  56. Data: &pasturePb.SearchSameTimeData{
  57. List: model.SameTimeSlice(semeTimeList).ToPB(weekMap, sameTimeCowTypeMap, systemUser),
  58. Total: int32(count),
  59. PageSize: pagination.PageSize,
  60. Page: pagination.Page,
  61. },
  62. }, nil
  63. }
  64. func (s *StoreEntry) SameTimeIsShow(ctx context.Context, id int64) error {
  65. sameTime := &model.SameTime{
  66. Id: id,
  67. }
  68. if err := s.DB.First(sameTime).Error; err != nil {
  69. if errors.Is(err, gorm.ErrRecordNotFound) {
  70. return xerr.Custom("该同期数据不存在")
  71. }
  72. return xerr.WithStack(err)
  73. }
  74. isShow := pasturePb.IsShow_No
  75. if sameTime.IsShow == pasturePb.IsShow_No {
  76. isShow = pasturePb.IsShow_Ok
  77. }
  78. if err := s.DB.Model(sameTime).Update("is_show", isShow).Error; err != nil {
  79. return xerr.WithStack(err)
  80. }
  81. return nil
  82. }
  83. func (s *StoreEntry) SearchDiseaseList(ctx context.Context, req *pasturePb.SearchDiseaseRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchDiseaseResponse, error) {
  84. diseaseList := make([]*model.Disease, 0)
  85. var count int64 = 0
  86. pref := s.DB.Model(new(model.Disease))
  87. if req.Name != "" {
  88. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  89. }
  90. if req.DiseaseTypeId > 0 {
  91. pref.Where("disease_type = ?", req.DiseaseTypeId)
  92. }
  93. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  94. Find(&diseaseList).Error; err != nil {
  95. return nil, xerr.WithStack(err)
  96. }
  97. systemUserList, _ := s.SystemUserList(ctx)
  98. diseaseTypeList, _ := s.DiseaseTypeList(ctx)
  99. return &pasturePb.SearchDiseaseResponse{
  100. Code: http.StatusOK,
  101. Message: "ok",
  102. Data: &pasturePb.SearchDiseaseData{
  103. List: model.DiseaseSlice(diseaseList).ToPB(systemUserList, diseaseTypeList),
  104. Total: int32(count),
  105. PageSize: pagination.PageSize,
  106. Page: pagination.Page,
  107. },
  108. }, nil
  109. }
  110. func (s *StoreEntry) CreateOrUpdateDisease(ctx context.Context, req *pasturePb.SearchDiseaseList) error {
  111. currUser, _ := s.GetCurrentSystemUser(ctx)
  112. if req.Id > 0 {
  113. barn := &model.Disease{Id: int64(req.Id)}
  114. if err := s.DB.Model(&model.Disease{}).First(barn).Error; err != nil {
  115. if !errors.Is(err, gorm.ErrRecordNotFound) {
  116. return xerr.WithStack(err)
  117. }
  118. }
  119. }
  120. if err := s.DB.Model(&model.Disease{}).Where(map[string]interface{}{
  121. "id": req.Id,
  122. }).Assign(map[string]interface{}{
  123. "disease_type": req.DiseaseTypeId,
  124. "name": req.Name,
  125. "symptoms": strings.Join(req.Symptoms, "|"),
  126. "remarks": req.Remarks,
  127. "is_show": pasturePb.IsShow_Ok,
  128. "operation_id": currUser.Id,
  129. }).FirstOrCreate(&model.Disease{}).Error; err != nil {
  130. return xerr.WithStack(err)
  131. }
  132. return nil
  133. }
  134. func (s *StoreEntry) SearchDiseaseTypeList(ctx context.Context, req *pasturePb.SearchNameRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchBaseConfigResponse, error) {
  135. diseaseTypeList := make([]*model.ConfigDiseaseType, 0)
  136. var count int64 = 0
  137. pref := s.DB.Model(new(model.ConfigDiseaseType))
  138. if req.Name != "" {
  139. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  140. }
  141. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  142. Find(&diseaseTypeList).Error; err != nil {
  143. return nil, xerr.WithStack(err)
  144. }
  145. return &pasturePb.SearchBaseConfigResponse{
  146. Code: http.StatusOK,
  147. Message: "ok",
  148. Data: &pasturePb.SearchBaseConfigData{
  149. List: model.ConfigDiseaseTypeSlice(diseaseTypeList).ToPB(),
  150. Total: int32(count),
  151. PageSize: pagination.PageSize,
  152. Page: pagination.Page,
  153. },
  154. }, nil
  155. }
  156. func (s *StoreEntry) CreateOrUpdateDiseaseType(ctx context.Context, req *pasturePb.SearchBaseConfigList) error {
  157. if req.Id > 0 {
  158. barn := &model.ConfigDiseaseType{Id: int64(req.Id)}
  159. if err := s.DB.Model(&model.ConfigDiseaseType{}).First(barn).Error; err != nil {
  160. if !errors.Is(err, gorm.ErrRecordNotFound) {
  161. return xerr.WithStack(err)
  162. }
  163. }
  164. }
  165. if err := s.DB.Model(&model.ConfigDiseaseType{}).Where(map[string]interface{}{
  166. "id": req.Id,
  167. }).Assign(map[string]interface{}{
  168. "name": req.Name,
  169. "remarks": req.Remarks,
  170. "is_show": pasturePb.IsShow_Ok,
  171. }).FirstOrCreate(&model.ConfigDiseaseType{}).Error; err != nil {
  172. return xerr.WithStack(err)
  173. }
  174. return nil
  175. }
  176. func (s *StoreEntry) SearchPrescriptionList(ctx context.Context, req *pasturePb.SearchPrescriptionRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchPrescriptionResponse, error) {
  177. prescriptionList := make([]*model.Prescription, 0)
  178. var count int64 = 0
  179. pref := s.DB.Model(new(model.Prescription)).Where("is_show = ?", pasturePb.IsShow_Ok)
  180. if req.Name != "" {
  181. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  182. }
  183. if err := pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  184. Find(&prescriptionList).Error; err != nil {
  185. return nil, xerr.WithStack(err)
  186. }
  187. prescriptionIds := make([]int32, 0)
  188. for _, prescription := range prescriptionList {
  189. prescriptionIds = append(prescriptionIds, prescription.Id)
  190. }
  191. prescriptionDrugs := make([]*model.PrescriptionDrugs, 0)
  192. if len(prescriptionIds) > 0 {
  193. if err := s.DB.Model(new(model.PrescriptionDrugs)).Where("prescription_id in (?)", prescriptionIds).
  194. Where("is_show = ? ", pasturePb.IsShow_Ok).
  195. Find(&prescriptionDrugs).Error; err != nil {
  196. return nil, xerr.WithStack(err)
  197. }
  198. }
  199. diseaseMaps, _ := s.DiseaseMaps(ctx)
  200. return &pasturePb.SearchPrescriptionResponse{
  201. Code: http.StatusOK,
  202. Message: "ok",
  203. Data: &pasturePb.SearchPrescriptionData{
  204. List: model.PrescriptionSlice(prescriptionList).ToPB(prescriptionDrugs, diseaseMaps),
  205. Total: int32(count),
  206. PageSize: pagination.PageSize,
  207. Page: pagination.Page,
  208. },
  209. }, nil
  210. }
  211. func (s *StoreEntry) CreateOrUpdatePrescription(ctx context.Context, req *pasturePb.PrescriptionRequest) error {
  212. currUser, err := s.GetCurrentSystemUser(ctx)
  213. if err != nil {
  214. return xerr.Custom("当前用户信息错误,请退出重新登录")
  215. }
  216. var maxUseDays, maxMeatExpiredDays, maxMilkExpiredDays int32 = 0, 0, 0
  217. for _, v := range req.DrugsList {
  218. if v.DrugsId <= 0 {
  219. return xerr.Customf("错误处方药品的数据")
  220. }
  221. if v.UseDays <= 0 {
  222. return xerr.Customf("错误处方药品使用天数")
  223. }
  224. if v.UseDays > maxUseDays {
  225. maxUseDays = v.UseDays
  226. }
  227. drugs, err := s.GetDrugsById(ctx, currUser.PastureId, int64(v.DrugsId))
  228. if err != nil {
  229. return xerr.WithStack(err)
  230. }
  231. if drugs.MeatExpiredDays > maxMeatExpiredDays {
  232. maxMeatExpiredDays = drugs.MeatExpiredDays
  233. }
  234. if drugs.MilkExpiredDays > maxMilkExpiredDays {
  235. maxMilkExpiredDays = drugs.MilkExpiredDays
  236. }
  237. }
  238. applicableDisease := ""
  239. if len(req.ApplicableDiseaseIds) > 0 {
  240. applicableDiseaseIds := make([]string, 0)
  241. for _, v := range req.ApplicableDiseaseIds {
  242. applicableDiseaseIds = append(applicableDiseaseIds, strconv.Itoa(int(v)))
  243. }
  244. applicableDisease = strings.Join(applicableDiseaseIds, ",")
  245. }
  246. newPrescription := model.NewPrescription(currUser.PastureId, req, applicableDisease, maxUseDays, maxMeatExpiredDays, maxMilkExpiredDays, currUser)
  247. if req.Id > 0 {
  248. prescription := &model.Prescription{Id: req.Id}
  249. if err = s.DB.Model(&model.Prescription{}).First(prescription).Error; err != nil {
  250. if !errors.Is(err, gorm.ErrRecordNotFound) {
  251. return xerr.WithStack(err)
  252. }
  253. }
  254. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  255. if err = tx.Model(&model.Prescription{}).Where(map[string]interface{}{
  256. "id": req.Id,
  257. }).Updates(map[string]interface{}{
  258. "name": newPrescription.Name,
  259. "applicable_disease": newPrescription.ApplicableDisease,
  260. "use_days": newPrescription.UseDays,
  261. "meat_expired_days": newPrescription.MeatExpiredDays,
  262. "milk_expired_days": newPrescription.MilkExpiredDays,
  263. "remarks": newPrescription.Remarks,
  264. }).Error; err != nil {
  265. return xerr.WithStack(err)
  266. }
  267. if err = tx.Model(new(model.PrescriptionDrugs)).Where("prescription_id", req.Id).
  268. Update("is_show", pasturePb.IsShow_No).Error; err != nil {
  269. return xerr.WithStack(err)
  270. }
  271. // 创建处方药品
  272. newPrescriptionDrugs := model.NewPrescriptionDrugs(currUser.PastureId, req.Id, req.DrugsList)
  273. if err = tx.Create(&newPrescriptionDrugs).Error; err != nil {
  274. return xerr.WithStack(err)
  275. }
  276. return nil
  277. }); err != nil {
  278. return xerr.WithStack(err)
  279. }
  280. return nil
  281. }
  282. // 创建处方
  283. if err = s.DB.Transaction(func(tx *gorm.DB) error {
  284. // 创建处方
  285. if err = tx.Create(&newPrescription).Error; err != nil {
  286. return xerr.WithStack(err)
  287. }
  288. // 创建处方药品
  289. newPrescriptionDrugs := model.NewPrescriptionDrugs(currUser.PastureId, newPrescription.Id, req.DrugsList)
  290. if err = tx.Create(&newPrescriptionDrugs).Error; err != nil {
  291. return xerr.WithStack(err)
  292. }
  293. return nil
  294. }); err != nil {
  295. return xerr.WithStack(err)
  296. }
  297. return nil
  298. }
  299. func (s *StoreEntry) PrescriptionDetail(ctx context.Context, id int64) (*pasturePb.PrescriptionDetailResponse, error) {
  300. currUser, err := s.GetCurrentSystemUser(ctx)
  301. if err != nil {
  302. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  303. }
  304. prescriptionData, err := s.GetPrescriptionById(ctx, currUser.PastureId, int32(id))
  305. if err != nil {
  306. return nil, xerr.WithStack(err)
  307. }
  308. prescriptionDrugsList, err := s.PrescriptionDrugsByPrescriptionId(ctx, currUser.PastureId, int32(id))
  309. if err != nil {
  310. return nil, xerr.WithStack(err)
  311. }
  312. return &pasturePb.PrescriptionDetailResponse{
  313. Code: http.StatusOK,
  314. Message: "ok",
  315. Data: &pasturePb.PrescriptionRequest{
  316. Id: prescriptionData.Id,
  317. Name: prescriptionData.Name,
  318. ApplicableDiseaseIds: make([]int32, 0),
  319. IsShow: prescriptionData.IsShow,
  320. Remarks: prescriptionData.Remarks,
  321. DrugsList: model.PrescriptionDrugsSlice(prescriptionDrugsList).ToPB(),
  322. },
  323. }, nil
  324. }
  325. func (s *StoreEntry) ImmunizationList(ctx context.Context, req *pasturePb.ImmunizationRequest, pagination *pasturePb.PaginationModel) (*pasturePb.SearchImmunizationResponse, error) {
  326. currUser, err := s.GetCurrentSystemUser(ctx)
  327. if err != nil {
  328. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  329. }
  330. immunizationList := make([]*model.ImmunizationPlan, 0)
  331. var count int64 = 0
  332. pref := s.DB.Model(new(model.ImmunizationPlan)).
  333. Where("pasture_id = ?", currUser.PastureId).
  334. Where("is_show = ?", pasturePb.IsShow_Ok)
  335. if req.Name != "" {
  336. pref.Where("name like ?", fmt.Sprintf("%s%s%s", "%", req.Name, "%"))
  337. }
  338. if err = pref.Order("id desc").Count(&count).Limit(int(pagination.PageSize)).Offset(int(pagination.PageOffset)).
  339. Find(&immunizationList).Error; err != nil {
  340. return nil, xerr.WithStack(err)
  341. }
  342. CowTypeOptions := s.ImmunizationCowTypeEnumList("")
  343. conditionsOptions := s.ImmunizationConditionsEnumList("")
  344. return &pasturePb.SearchImmunizationResponse{
  345. Code: http.StatusOK,
  346. Message: "ok",
  347. Data: &pasturePb.SearchImmunizationData{
  348. List: model.ImmunizationPlanSlice(immunizationList).ToPB(CowTypeOptions, conditionsOptions),
  349. Total: int32(count),
  350. PageSize: pagination.PageSize,
  351. Page: pagination.Page,
  352. },
  353. }, nil
  354. }
  355. func (s *StoreEntry) CreatedOrUpdateImmunization(ctx context.Context, req *pasturePb.ImmunizationRequest) error {
  356. var (
  357. immunization *model.ImmunizationPlan
  358. err error
  359. systemUser *model.SystemUser
  360. )
  361. currUser, err := s.GetCurrentSystemUser(ctx)
  362. if err != nil {
  363. return xerr.Custom("当前用户信息错误,请退出重新登录")
  364. }
  365. if req.Conditions == pasturePb.ImmunizationConditions_Other_Vaccine_After && req.ImmunizationPlanId <= 0 {
  366. return xerr.Custom("请选择具体的免疫计划")
  367. }
  368. if req.ImmunizationPlanId > 0 {
  369. otherImmunization, err := s.GetImmunizationById(ctx, currUser.PastureId, int64(req.ImmunizationPlanId))
  370. if err != nil {
  371. return xerr.WithStack(err)
  372. }
  373. req.ImmunizationPlanName = otherImmunization.Name
  374. }
  375. if req.Id > 0 {
  376. immunization, err = s.GetImmunizationById(ctx, currUser.PastureId, int64(req.Id))
  377. if err != nil {
  378. return xerr.WithStack(err)
  379. }
  380. systemUser, _ = s.GetSystemUserById(ctx, currUser.PastureId, immunization.OperationId)
  381. } else {
  382. systemUser, _ = s.GetCurrentSystemUser(ctx)
  383. }
  384. immunization = model.NewImmunizationPlan(systemUser, req)
  385. if err = s.DB.Model(&model.ImmunizationPlan{}).Where(map[string]interface{}{
  386. "id": req.Id,
  387. }).Assign(map[string]interface{}{
  388. "name": immunization.Name,
  389. "cow_type": immunization.CowType,
  390. "conditions": immunization.Conditions,
  391. "value": immunization.Value,
  392. "immunization_plan_id": immunization.ImmunizationPlanId,
  393. "immunization_plan_name": immunization.ImmunizationPlanName,
  394. "is_show": immunization.IsShow,
  395. "operation_id": immunization.OperationId,
  396. "operation_name": immunization.OperationName,
  397. }).FirstOrCreate(&model.ImmunizationPlan{}).Error; err != nil {
  398. return xerr.WithStack(err)
  399. }
  400. return nil
  401. }
  402. func (s *StoreEntry) ImmunizationIsShow(ctx context.Context, id int64) error {
  403. currUser, err := s.GetCurrentSystemUser(ctx)
  404. if err != nil {
  405. return xerr.Custom("当前用户信息错误,请退出重新登录")
  406. }
  407. immunizationPlan := &model.ImmunizationPlan{
  408. Id: id,
  409. }
  410. if err = s.DB.Model(new(model.ImmunizationPlan)).
  411. Where("id = ?", id).
  412. Where("pasture_id = ?", currUser.PastureId).
  413. First(immunizationPlan).Error; err != nil {
  414. if errors.Is(err, gorm.ErrRecordNotFound) {
  415. return xerr.Custom("该免疫计划不存在")
  416. }
  417. return xerr.WithStack(err)
  418. }
  419. isShow := pasturePb.IsShow_No
  420. if immunizationPlan.IsShow == pasturePb.IsShow_No {
  421. isShow = pasturePb.IsShow_Ok
  422. }
  423. if err = s.DB.Model(immunizationPlan).Update("is_show", isShow).Error; err != nil {
  424. return xerr.WithStack(err)
  425. }
  426. return nil
  427. }
  428. func (s *StoreEntry) SystemBasicList(ctx context.Context) (*pasturePb.SearchBaseDataConfigResponse, error) {
  429. currUser, err := s.GetCurrentSystemUser(ctx)
  430. if err != nil {
  431. return nil, xerr.Custom("当前用户信息错误,请退出重新登录")
  432. }
  433. systemBasicList := make([]*model.SystemBasic, 0)
  434. if err = s.DB.Model(new(model.SystemBasic)).
  435. Where("pasture_id = ?", currUser.PastureId).
  436. Where("is_show = ?", pasturePb.IsShow_Ok).Find(&systemBasicList).Error; err != nil {
  437. return nil, xerr.WithStack(err)
  438. }
  439. return &pasturePb.SearchBaseDataConfigResponse{
  440. Code: http.StatusOK,
  441. Message: "ok",
  442. Data: &pasturePb.SearchBaseDataConfigData{
  443. List: model.SystemBasicSlice(systemBasicList).ToPb(),
  444. Total: int32(len(systemBasicList)),
  445. },
  446. }, nil
  447. }
  448. func (s *StoreEntry) SystemBasicEdit(ctx context.Context, req *pasturePb.BaseDataConfigBatch) error {
  449. currentUser, err := s.GetCurrentSystemUser(ctx)
  450. if err != nil {
  451. return xerr.Custom("当前用户信息错误,请退出重新登录")
  452. }
  453. for _, v := range req.Item {
  454. systemBasic := &model.SystemBasic{Id: v.Id}
  455. if err = s.DB.Model(systemBasic).
  456. Where("is_show = ?", pasturePb.IsShow_Ok).
  457. Where("pasture_id = ?", currentUser.PastureId).
  458. First(systemBasic).Error; err != nil {
  459. zaplog.Error("SystemBasicEdit", zap.Any("err", err), zap.Any("req", req))
  460. return xerr.Customf("该配置信息不存在: %d", v.Id)
  461. }
  462. systemBasic.EditUpdate(currentUser.PastureId, v.MinValue, v.MaxValue, v.WeekValue, currentUser)
  463. if err = s.DB.Model(systemBasic).
  464. Select("min_value", "max_value", "week_value", "operation_id", "operation_name").
  465. Updates(systemBasic).Error; err != nil {
  466. zaplog.Error("SystemBasicEdit", zap.Any("err", err), zap.Any("req", req))
  467. return xerr.WithStack(err)
  468. }
  469. }
  470. return nil
  471. }