Explorar el Código

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

release_toaliyun_real
luozukai hace 7 años
padre
commit
f624f64a22
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  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 Ver fichero

@@ -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;


Cargando…
Cancelar
Guardar