瀏覽代碼

1.入院记录联系电话填写错误,病案首页取现住址电话

hujing 5 年之前
父節點
當前提交
9283460795
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      kernel/src/main/java/com/lantone/qc/kernel/catalogue/behospitalized/BEH0423.java

+ 3 - 3
kernel/src/main/java/com/lantone/qc/kernel/catalogue/behospitalized/BEH0423.java

@@ -26,9 +26,9 @@ public class BEH0423 extends QCCatalogue {
         Map<String, String> firstStructMap = inputInfo.getFirstPageRecordDoc().getStructureMap();
         if (bhStructureMap != null && firstStructMap != null) {
             String phone = bhStructureMap.get("电话");
-            String contactPhone = firstStructMap.get(Content.contact_phone);
-            if (!CatalogueUtil.isEmpty(phone) && !CatalogueUtil.isEmpty(contactPhone)) {
-                if (!phone.equals(contactPhone)) {
+            String currentAddressPhone = firstStructMap.get("现住址电话");
+            if (!CatalogueUtil.isEmpty(phone) && !CatalogueUtil.isEmpty(currentAddressPhone)) {
+                if (!phone.equals(currentAddressPhone)) {
                     status.set("-1");
                 }
             }