From a5e43d82a5d141422731c5d761c83621f840f002 Mon Sep 17 00:00:00 2001 From: wyb <1977763549@qq.com> Date: Mon, 30 Sep 2024 17:18:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=A1=BA=E5=BE=B7=E4=BA=BA=E5=8C=BB?= =?UTF-8?q?=EF=BC=8C=E6=A3=80=E6=9F=A5=E6=8A=A5=E5=91=8A=EF=BC=8C=E7=97=85?= =?UTF-8?q?=E7=90=86=E6=9D=A5=E6=BA=90=E6=8A=A5=E5=91=8A=EF=BC=8C=E5=94=AF?= =?UTF-8?q?=E4=B8=80=E5=80=BC=E4=B8=8D=E9=9C=80=E8=A6=81=E5=88=86=E9=9A=94?= =?UTF-8?q?=E4=B8=8B=E5=88=92=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webservice/impl/HIP1008InspectionReportAdditionHandler.java | 2 +- .../webservice/impl/HIP1009InspectionReportUpdatesHandler.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/docus/server/report/webservice/impl/HIP1008InspectionReportAdditionHandler.java b/src/main/java/com/docus/server/report/webservice/impl/HIP1008InspectionReportAdditionHandler.java index 0c222db..53a07b1 100644 --- a/src/main/java/com/docus/server/report/webservice/impl/HIP1008InspectionReportAdditionHandler.java +++ b/src/main/java/com/docus/server/report/webservice/impl/HIP1008InspectionReportAdditionHandler.java @@ -205,7 +205,7 @@ public class HIP1008InspectionReportAdditionHandler implements WebserviceReceive String eafNo = eafNoNode.getNodeValue(); String serialnum = reportFlag + "@" + eafNo; // 如果报告单号带下划线是合并报告,取报告单号下划线前的,可能有个别来源不需要 - List ignoreUnderlineSenders= Arrays.asList("lungFunction-001"); + List ignoreUnderlineSenders= Arrays.asList("lungFunction-001","BL-001"); if (reportFlag.contains("_") && !ignoreUnderlineSenders.contains(sender)) { String[] split = reportFlag.split("_"); serialnum = split[0]; diff --git a/src/main/java/com/docus/server/report/webservice/impl/HIP1009InspectionReportUpdatesHandler.java b/src/main/java/com/docus/server/report/webservice/impl/HIP1009InspectionReportUpdatesHandler.java index 75c836b..ac31d54 100644 --- a/src/main/java/com/docus/server/report/webservice/impl/HIP1009InspectionReportUpdatesHandler.java +++ b/src/main/java/com/docus/server/report/webservice/impl/HIP1009InspectionReportUpdatesHandler.java @@ -189,7 +189,7 @@ public class HIP1009InspectionReportUpdatesHandler implements WebserviceReceiveS String eafNo = eafNoNode.getNodeValue(); String serialnum = reportFlag + "@" + eafNo; // 如果报告单号带下划线是合并报告,取报告单号下划线前的,可能有个别来源不需要 - List ignoreUnderlineSenders= Arrays.asList("lungFunction-001"); + List ignoreUnderlineSenders= Arrays.asList("lungFunction-001","BL-001"); if (reportFlag.contains("_") && !ignoreUnderlineSenders.contains(sender)) { String[] split = reportFlag.split("_"); serialnum = split[0];