xiaochan 2 лет назад
Родитель
Сommit
a72f871fe4

+ 1 - 1
src/main/java/thyyxxk/webserver/dao/his/casefrontsheet/JieShouHuiZhenDao.java

@@ -63,7 +63,7 @@ public interface JieShouHuiZhenDao {
             "       hz_zd, " +
             "       hz_md, " +
             "       hz_comment," +
-            "       hz_doctor2, " +
+            "       hz_doctor2,status_flag, " +
             "       (select rtrim(name) name " +
             "        from a_employee_mi with (nolock) " +
             "        where code = hz_doctor2)                                                                            hz_doctor2_name, " +

+ 2 - 4
src/main/java/thyyxxk/webserver/service/zhuyuanyisheng/yizhuverify/YiZhuCheckData.java

@@ -41,8 +41,7 @@ public class YiZhuCheckData {
     private Boolean passTheAudit = true;
     private final List<String> groupList = Arrays.asList("71", "73");
     private Repel repel = null;
-
-    private String ONCE = "ONCE";
+    private final String ONCE = "ONCE";
 
 
     public YiZhuCheckData(YiZhuLuRuDao dao) {
@@ -58,8 +57,7 @@ public class YiZhuCheckData {
     }
 
     public YiZhuCheckData init(XinZhenYzActOrder orderData, XinZhenYiZhu patientInformation) {
-        List<XinZhenYzActOrder> temp = new ArrayList<>();
-        temp.add(orderData);
+        List<XinZhenYzActOrder> temp = Collections.singletonList(orderData);
         init(temp, patientInformation);
         return this;
     }