Browse Source

优化审批流&开发车辆显示

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

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

@@ -292,6 +292,9 @@ public class WxFlowServiceImpl implements WxFlowService {
Integer flowType = (Integer)mapInfo.get("flowType");
taskService.complete(taskId);

// 判断流程是否结束,并发送短信通知
isEndAndSendMsg(mapInfo,taskKey,processInstanceId,tenantId,userName);

//保存wx_flow_record表审批记录
WxFlowRecord wxFlowRecord = new WxFlowRecord();
wxFlowRecord.setTaskId(taskId);
@@ -306,9 +309,6 @@ public class WxFlowServiceImpl implements WxFlowService {
wxFlowRecord.setTaskKey(taskKey);
wxFlowRecordService.saveOrUpdate(wxFlowRecord);

// 判断流程是否结束,并发送短信通知
isEndAndSendMsg(mapInfo,taskKey,processInstanceId,tenantId,userName);

return new ResultData();
}



Loading…
Cancel
Save