prescription.go 17 KB

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