소스 검색

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");
                 }
             }