|
|
|
@ -1413,6 +1413,12 @@ public class ChangeManagementServiceImpl extends ServiceImpl<ChangeManagementMap |
|
|
|
// 如果节点isRemark=6,需要再次调用流程流转信息 |
|
|
|
List<Map<String, Object>> irs = res.stream().filter(a -> convertToInt(a.get("isremark")) == 6).collect(Collectors.toList()); |
|
|
|
if (!irs.isEmpty()) { |
|
|
|
try { |
|
|
|
// 等待2秒(2000毫秒) |
|
|
|
Thread.sleep(2000); |
|
|
|
} catch (InterruptedException e) { |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
getRequestOperatorInfoResponses = HttpClientUtil.doPostByRawWithOA(getRequestOperatorInfoURL, requestOperatorInfoParam); |
|
|
|
if (!"0".equals(getRequestOperatorInfoResponses.getCode())) { |
|
|
|
throw new RuntimeException("OA获取流程流转信息异常信息:" + getRequestOperatorInfoResponses.getMsg()); |
|
|
|
|