Browse Source

入院记录由非执业医师填写

weixuanhuang 5 years ago
parent
commit
128bfb818d

+ 1 - 1
kernel/src/main/java/com/lantone/qc/kernel/catalogue/behospitalized/BEH0494.java

@@ -35,7 +35,7 @@ public class BEH0494 extends QCCatalogue {
             if (null != redisUtil.get(sign)) {
                 surgeon = (Map)redisUtil.get(sign);
                 String prof = surgeon.get("职称").trim();
-                if (null != prof && surgeon.equals(prof)) {
+                if (null != prof && prof.contains("医师")) {
                     cnt += 1;
                 }
             }