Commit b0551ad2 authored by xixinzhao's avatar xixinzhao

bug修改

parent dfdfb3e8
......@@ -18,7 +18,7 @@ public enum WorkFlowUriEnum {
当前子节点("当前子节点", "/wf/processes/{processInstanceId}/tasks?taskDefinitionKey={taskDefinitionKey}", "processInstanceId,taskDefinitionKey"),
工作流流水("工作流流水","/wf/processes/{processInstanceId}/tasks", "processInstanceId"),
子节点信息("子节点信息","/workflow/task/list/all/{instanceId}", "instanceId"),
当前任务("子节点信息","/workflow/task/{processInstanceId}", "processInstanceId");
当前任务("当前任务","/workflow/task/{processInstanceId}", "processInstanceId");
private String desc;
......
......@@ -269,7 +269,7 @@ public class RemoteWorkFlowService {
public JSONObject queryTask(String id) {
Map<String, String> map = Maps.newHashMap();
map.put("processInstanceId", id);
String url = buildUrl(address, WorkFlowUriEnum.流程任务, map);
String url = buildUrl(address, WorkFlowUriEnum.当前任务, map);
Map<String, String> headerMap = Maps.newHashMap();
headerMap.put(XJConstant.TOKEN_KEY, RequestContext.getToken());
headerMap.put(XJConstant.PRODUCT, RequestContext.getProduct());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment