审核结束消息通知bug与能力申请节点不进入能力申请异常
This commit is contained in:
parent
6fae1071ff
commit
4b99279d87
|
@ -238,7 +238,7 @@ public class ActivitiNoticeAspect {
|
||||||
Long resourceId = null;
|
Long resourceId = null;
|
||||||
if (kv.containsKey("resourceId") && kv.get("resourceId") != null) {
|
if (kv.containsKey("resourceId") && kv.get("resourceId") != null) {
|
||||||
resourceId = Long.valueOf(kv.get("resourceId").toString());
|
resourceId = Long.valueOf(kv.get("resourceId").toString());
|
||||||
} else if (kv.containsKey("id") && kv.get("id") != null && kv.containsKey("-")) {
|
} else if (kv.containsKey("id") && kv.get("id") != null && !kv.get("id").toString().contains("-")) {
|
||||||
resourceId = Long.valueOf(kv.get("id").toString());
|
resourceId = Long.valueOf(kv.get("id").toString());
|
||||||
} else {
|
} else {
|
||||||
resourceId = 0L;
|
resourceId = 0L;
|
||||||
|
|
|
@ -214,8 +214,8 @@ public class AbilityCenterControllerV2 {
|
||||||
|
|
||||||
Boolean basic_facilities = dtoList.stream().map(index -> {
|
Boolean basic_facilities = dtoList.stream().map(index -> {
|
||||||
Optional<ResourceDTO> resourceDTOOptional = Optional.ofNullable(resourceService.get(Long.valueOf(index.getResourceId()))); // 从本库内查不到 视为其它平台的基础设施资源
|
Optional<ResourceDTO> resourceDTOOptional = Optional.ofNullable(resourceService.get(Long.valueOf(index.getResourceId()))); // 从本库内查不到 视为其它平台的基础设施资源
|
||||||
return !resourceDTOOptional.isPresent() || !"基础设施".equals(resourceDTOOptional.get().getType());
|
return !resourceDTOOptional.isPresent() || !"基础设施".equals(resourceDTOOptional.isPresent() ? "" : resourceDTOOptional.get().getType());
|
||||||
}).filter(index -> !index).findAny().orElse(Boolean.TRUE);
|
}).filter(index -> !index).findAny().orElse(Boolean.FALSE);
|
||||||
logger.error("--------------------是否全是基础设施{}----------------------------------------------", basic_facilities);
|
logger.error("--------------------是否全是基础设施{}----------------------------------------------", basic_facilities);
|
||||||
final List<Long> ids = dtoList.stream().map(TAbilityApplicationDTO::getId).collect(Collectors.toList()); // 发起申请的表单id
|
final List<Long> ids = dtoList.stream().map(TAbilityApplicationDTO::getId).collect(Collectors.toList()); // 发起申请的表单id
|
||||||
// 仿照请求接口 /act/running/startOfBusinessKey
|
// 仿照请求接口 /act/running/startOfBusinessKey
|
||||||
|
|
Loading…
Reference in New Issue