From 4878e54e7aaac6ac8b94468c75c0ed64458458d1 Mon Sep 17 00:00:00 2001 From: wxc <191104855@qq.com> Date: Thu, 28 Aug 2025 11:10:22 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BF=AE=E5=A4=8D=E8=AD=A6=E5=8A=A1?= =?UTF-8?q?=E8=AF=84=E8=AE=AE=E6=B6=89=E5=8F=8A=E5=8D=95=E4=BD=8D=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=9A=84=E9=80=89=E4=B8=8D=E5=88=B0=E4=BA=BA=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/biutag/supervision/service/NegativeService.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/biutag/supervision/service/NegativeService.java b/src/main/java/com/biutag/supervision/service/NegativeService.java index e7f93c6..88ccc8a 100644 --- a/src/main/java/com/biutag/supervision/service/NegativeService.java +++ b/src/main/java/com/biutag/supervision/service/NegativeService.java @@ -276,10 +276,6 @@ public class NegativeService extends ServiceImpl { throw new RuntimeException("样本源头编号已存在请核实"); } String businessTypeCode = NegativeApiDto.BusinessType.getCode(item.getBusinessTypeName()); -// if (!NegativeApiDto.BusinessType.JCJ_110.getCode().equals(businessTypeCode) && !NegativeApiDto.BusinessType.JCJ_122.getCode().equals(businessTypeCode)) { -// // 只针对110、122数据进行下发 -// continue; -// } SupDepart dept = departService.getByJwpyCode(item.getDepartCode()); Negative negative = new Negative(); BeanUtil.copyProperties(item, negative); @@ -315,11 +311,14 @@ public class NegativeService extends ServiceImpl { .setHandleThreeDepartName(dept.getShortName()) .setHandleSecondDepartId(parentDepart.getId()) .setHandleSecondDepartName(parentDepart.getShortName()) + .setSecondInvolveDepartId(parentDepart.getId()) + .setThreeInvolveDepartId(dept.getId()) .setFlowKey(FlowNodeEnum.THREE_SIGN.getKey()) .setCurrentProcessingObject(String.format("%s专班", dept.getShortName())); } else if (DepartLevelEnum.SECOND.getValue().equals(dept.getLevel())) { negative.setHandleSecondDepartId(dept.getId()) .setHandleSecondDepartName(dept.getShortName()) + .setSecondInvolveDepartId(dept.getId()) .setFlowKey(FlowNodeEnum.SECOND_SIGN.getKey()) .setCurrentProcessingObject(String.format("%s专班", dept.getShortName())); }