Browse Source

[审批流][添加][添加合同提前终止审批]

release_toaliyun_real
luozukai 7 years ago
parent
commit
f624f64a22
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java

+ 2
- 2
mallinkService/src/main/java/com/iformall/service/impl/WxFlowServiceImpl.java View File

@@ -494,7 +494,7 @@ public class WxFlowServiceImpl implements WxFlowService {
String processInstanceId = (String)params.get("processInstanceId");
String remark = (String)params.get("remark");
Map<String,Object> mapInfo = taskService.getVariables(taskId);
Long businessId = (Long)mapInfo.get("businessId");
Long businessId = Long.parseLong((String)mapInfo.get("businessId"));
Integer flowType = (Integer)mapInfo.get("flowType");
MallUserInfo starter = (MallUserInfo)mapInfo.get("starter");

@@ -552,7 +552,7 @@ public class WxFlowServiceImpl implements WxFlowService {
String remark = (String)params.get("remark");

Map<String,Object> mapInfo = taskService.getVariables(taskId);
Long businessId = (Long)mapInfo.get("businessId");
Long businessId = Long.parseLong((String)mapInfo.get("businessId"));
Integer flowType = (Integer)mapInfo.get("flowType");

String taskName;


Loading…
Cancel
Save