|
@@ -355,7 +355,11 @@ public class WorkflowMangerServiceImpl implements WorkflowMangerService {
|
|
|
TaskInfoEntity taskInfo = null;
|
|
|
if (null == task)
|
|
|
return null;
|
|
|
- taskInfo = taskInfoService.getByTaskId(task.getId());
|
|
|
+ try {
|
|
|
+ taskInfo = taskInfoService.getByTaskId(task.getId());
|
|
|
+ } catch (Exception e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
if (null == taskInfo) {
|
|
|
// 工作流记录
|
|
|
taskInfo = new TaskInfoEntity();
|