Browse Source

首次病程未在患者入院8小时内完成

kongwz 5 years ago
parent
commit
1f203f9d68

+ 4 - 0
kernel/src/main/java/com/lantone/qc/kernel/catalogue/firstcourserecord/FIRC0093.java

@@ -39,9 +39,13 @@ public class FIRC0093 extends QCCatalogue {
                     boolean firc = CatalogueUtil.compareTime(date_in, date_out, 8 * 60L);
                     if (firc) {
                         status.set("-1");
+                        return;
                     }
                 }
             }
+        }else {
+            status.set("-1");
+            return;
         }
     }
 }