From 99810f5221dc88701fb2efdd700f9a92dccca55c Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期五, 14 八月 2026 15:46:06 +0800
Subject: [PATCH] 【丽水】随访建议

---
 smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java b/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
index 4350848..16672c7 100644
--- a/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
+++ b/smartor/src/main/java/com/smartor/service/impl/PatMedInhospServiceImpl.java
@@ -432,19 +432,19 @@
                         Integer type = 1;
                         if (StringUtils.isNotEmpty(deptCodes)) {
                             type = 1;
-                            deptCodeList = Arrays.asList(deptCodes.split(","));
+                            deptCodeList = new ArrayList<>(Arrays.asList(deptCodes.split(",")));
                         }
                         if(StringUtils.isNotEmpty(wardCodes)) {
                             type = 2;
-                            wardCodeList = Arrays.asList(wardCodes.split(","));
+                            wardCodeList = new ArrayList<>(Arrays.asList(wardCodes.split(",")));
                         }
                         if(StringUtils.isNotEmpty(icd10Codes)) {
                             type = 3;
-                            icd10CodeList = Arrays.asList(icd10Codes.split(","));
+                            icd10CodeList = new ArrayList<>(Arrays.asList(icd10Codes.split(",")));
                         }
                         if (StringUtils.isNotEmpty(opLevelCodes)) {
                             type = 6;
-                            opLevelCodeList = Arrays.asList(opLevelCodes.split(","));
+                            opLevelCodeList = new ArrayList<>(Arrays.asList(opLevelCodes.split(",")));
                         }
                         //闈炴墜鏈鐞嗘柟寮�
                         if(type != 6){
@@ -1339,7 +1339,7 @@
                 // 鏍规嵁鎮h�呯殑鐤剧梾锛岃幏鍙栬鐤剧梾鐨勯暱鏈熶换鍔�
                 ServiceTaskdiag serviceTaskdiag = new ServiceTaskdiag();
                 serviceTaskdiag.setLongtask(1L);
-                serviceTaskdiag.setServiceType("2");
+//                serviceTaskdiag.setServiceType("2");
                 if (active.equals("nhfy")) {
                     //鍗楀崕闄勪竴鐨刬cd10code鏈夐噸澶嶏紝鎵�浠ョ敤涓昏瘖鏂悕绉板幓鏌ヨ
                     serviceTaskdiag.setIcd10name(pmiJB.getLeavediagname());
@@ -1828,7 +1828,7 @@
 
             ServiceTaskdiag serviceTaskdiag = new ServiceTaskdiag();
             serviceTaskdiag.setLongtask(1L);
-            serviceTaskdiag.setServiceType("2");
+//            serviceTaskdiag.setServiceType("2");
             if (active.equals("nhfy")) {
                 serviceTaskdiag.setIcd10name(patMedInhosp1.getLeavediagname());
                 if (StringUtils.isEmpty(patMedInhosp1.getLeavediagname())) {

--
Gitblit v1.9.3