diff --git a/src/main/java/com/spring/modules/change/mapper/ChangeManagementMapper.java b/src/main/java/com/spring/modules/change/mapper/ChangeManagementMapper.java index 8f3599b3..45aa9a3c 100644 --- a/src/main/java/com/spring/modules/change/mapper/ChangeManagementMapper.java +++ b/src/main/java/com/spring/modules/change/mapper/ChangeManagementMapper.java @@ -128,7 +128,7 @@ public interface ChangeManagementMapper extends BaseMapper{ void updateProcessReject(@Param("site") String site, @Param("bu") String bu, @Param("requestId") String requestId, @Param("domainControlAccount") String domainControlAccount); - ProcessFormEntity getProcessNodeId(@Param("site") String site, @Param("bu") String bu, @Param("requestId") String requestId, @Param("domainControlAccount") String domainControlAccount); + List getProcessNodeId(@Param("site") String site, @Param("bu") String bu, @Param("requestId") String requestId, @Param("domainControlAccount") String domainControlAccount); String getNodeName(@Param("site") String site, @Param("classificationNo") String classificationNo, @Param("nodeId") String nodeId); diff --git a/src/main/java/com/spring/modules/change/service/impl/ChangeManagementServiceImpl.java b/src/main/java/com/spring/modules/change/service/impl/ChangeManagementServiceImpl.java index 40a9bd6b..caffe22f 100644 --- a/src/main/java/com/spring/modules/change/service/impl/ChangeManagementServiceImpl.java +++ b/src/main/java/com/spring/modules/change/service/impl/ChangeManagementServiceImpl.java @@ -1465,8 +1465,8 @@ public class ChangeManagementServiceImpl extends ServiceImpl processFormList2 = changeManagementMapper.getProcessNodeId(data.getSite(), data.getBu(), requestId, user.getDomainControlAccount()); + ProcessFormEntity processForm = processFormList2.get(0); // 获取流程流转信息 RequestOperatorInfoParam requestOperatorInfoParam = new RequestOperatorInfoParam(); requestOperatorInfoParam.setUserId(userId); @@ -1950,8 +1950,8 @@ public class ChangeManagementServiceImpl extends ServiceImpl processFormList = changeManagementMapper.getProcessNodeId(paramData.getSite(), paramData.getBu(), paramData.getRequestId(), paramData.getDomainControlAccount()); + ProcessFormEntity processForm = processFormList.get(0); // 获取流程流转信息 RequestOperatorInfoParam requestOperatorInfoParam = new RequestOperatorInfoParam(); requestOperatorInfoParam.setUserId(paramData.getUserId()); diff --git a/src/main/java/com/spring/modules/proofing/service/impl/ProofingInformationServiceImpl.java b/src/main/java/com/spring/modules/proofing/service/impl/ProofingInformationServiceImpl.java index 7fed3076..145ed8fe 100644 --- a/src/main/java/com/spring/modules/proofing/service/impl/ProofingInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/proofing/service/impl/ProofingInformationServiceImpl.java @@ -816,8 +816,8 @@ public class ProofingInformationServiceImpl extends ServiceImpl processFormList = changeManagementMapper.getProcessNodeId(paramData.getSite(), paramData.getBu(), paramData.getRequestId(), paramData.getDomainControlAccount()); + ProcessFormEntity processForm = processFormList.get(0); // 获取流程流转信息 RequestOperatorInfoParam requestOperatorInfoParam = new RequestOperatorInfoParam(); requestOperatorInfoParam.setUserId(paramData.getUserId()); diff --git a/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java b/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java index db0a1a4d..b0bec87a 100644 --- a/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/quotation/service/impl/QuotationInformationServiceImpl.java @@ -1097,8 +1097,8 @@ public class QuotationInformationServiceImpl extends ServiceImpl processFormList = changeManagementMapper.getProcessNodeId(paramData.getSite(), paramData.getBu(), paramData.getRequestId(), paramData.getDomainControlAccount()); + ProcessFormEntity processForm = processFormList.get(0); // 获取流程流转信息 RequestOperatorInfoParam requestOperatorInfoParam = new RequestOperatorInfoParam(); requestOperatorInfoParam.setUserId(paramData.getUserId()); diff --git a/src/main/java/com/spring/modules/test/service/impl/TestInformationServiceImpl.java b/src/main/java/com/spring/modules/test/service/impl/TestInformationServiceImpl.java index feeedaa4..cdd6524c 100644 --- a/src/main/java/com/spring/modules/test/service/impl/TestInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/test/service/impl/TestInformationServiceImpl.java @@ -720,8 +720,8 @@ public class TestInformationServiceImpl extends ServiceImpl processFormList = changeManagementMapper.getProcessNodeId(paramData.getSite(), paramData.getBu(), paramData.getRequestId(), paramData.getDomainControlAccount()); + ProcessFormEntity processForm = processFormList.get(0); // 获取流程流转信息 RequestOperatorInfoParam requestOperatorInfoParam = new RequestOperatorInfoParam(); requestOperatorInfoParam.setUserId(paramData.getUserId());