From 2cabd75966e270e76abb035ae4eead9346a790f7 Mon Sep 17 00:00:00 2001 From: shangguochao Date: Mon, 4 Jul 2022 17:42:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E8=BF=81=E7=A7=BB=E6=A0=A1?= =?UTF-8?q?=E9=AA=8C=E5=9B=BE=E5=BD=A2=E5=B1=9E=E6=80=A7=E6=97=B6=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../apps/coe/pal/datamigration/aris/web/ArisXmlImportWeb.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/aris/web/ArisXmlImportWeb.java b/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/aris/web/ArisXmlImportWeb.java index 6422f90e..bc83174f 100644 --- a/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/aris/web/ArisXmlImportWeb.java +++ b/com.actionsoft.apps.coe.pal.datamigration/src/com/actionsoft/apps/coe/pal/datamigration/aris/web/ArisXmlImportWeb.java @@ -362,7 +362,7 @@ public class ArisXmlImportWeb extends ActionWeb { } for (String attrId : attrs) { String text = attrMap2.containsKey(attrId) ? attrMap2.get(attrId).getNewTitle() : attrId; - if (!attrMap.containsKey(attrId)) { + if (!attrMap2.containsKey(attrId)) { String msg = Constant.LOG_ERROR + "[" + methodName + "]中的形状[" + shapeText + "]属性[" + text + "]不存在,请检查相应属性配置," + Constant.IMPORT_STOP_MSG; updateErrLog(msg, msg); return ResponseObject.newErrResponse("[" + methodName + "]中的形状[" + shapeText + "]属性[" + text + "]不存在");