|
@@ -43,8 +43,8 @@ public class IncidentProcessServiceImpl extends ServicePlusImpl<IncidentProcessM
|
|
|
private FeignBacklogInfoService feignBacklogInfoService;
|
|
|
@Autowired
|
|
|
private IIncidentTaskService incidentTaskService;
|
|
|
- @Value("${third.incidentUrl}")
|
|
|
- private String incidentUrl;
|
|
|
+ @Value("${third.incidentDetailUrl}")
|
|
|
+ private String incidentDetailUrl;
|
|
|
@Value("${third.resourceUrl}")
|
|
|
private String resourceUrl;
|
|
|
|
|
@@ -129,7 +129,7 @@ public class IncidentProcessServiceImpl extends ServicePlusImpl<IncidentProcessM
|
|
|
String sendFlag = incidentTaskVo.getSendFlag();
|
|
|
String url = "";
|
|
|
if ("2".equals(sendFlag)) {
|
|
|
- url = incidentUrl.replace("#incidentId", incidentTaskVo.getIncidentId()).replace("#taskId", "");
|
|
|
+ url = incidentDetailUrl.replace("#incidentId", incidentTaskVo.getIncidentId());
|
|
|
} else if ("3".equals(sendFlag)) {
|
|
|
url = resourceUrl.replace("#taskId", "");
|
|
|
}
|