Pārlūkot izejas kodu

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

hujing 5 gadi atpakaļ
vecāks
revīzija
9283460795

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