Browse Source

查房记录中产科检查描述值为【破膜未破】与【胎膜早破】诊断不符 bug修正

wangsy 3 năm trước cách đây
mục cha
commit
e80fc5fd8e

+ 1 - 1
kernel/src/main/java/com/lantone/qc/kernel/catalogue/threelevelward/THR03304.java

@@ -72,7 +72,7 @@ public class THR03304 extends QCCatalogue {
                 }
             }
             //匹配到胎膜早破正则,输出,
-            if ((StringUtil.isNotBlank(b) && getIsCompile(b)) || (StringUtil.isNotBlank(c) && getIsCompile(c)) || (StringUtil.isNotBlank(b) && getIsCompile(d))) {
+            if ((StringUtil.isNotBlank(b) && getIsCompile(b)) || (StringUtil.isNotBlank(c) && getIsCompile(c)) || (StringUtil.isNotBlank(d) && getIsCompile(d))) {
                 status.set("-1");
                 return;
             }