Commit 5e1d73827420561326d0d83435b7eabf79d348d2

Authored by 房远帅
2 parents 03b37c4c 6225600a

Merge remote-tracking branch 'origin/master_0929' into master_0929

... ... @@ -167,6 +167,10 @@ public class ContractDistributorStandardServiceImpl extends
167 167 public ContractDistributorStandard findById(String id) {
168 168
169 169 ContractDistributorStandard data = getBaseMapper().selectById(id);
  170 + if (data == null) {
  171 + return null;
  172 + }
  173 +
170 174 // 获取当前人员的待办任务数据
171 175 List<FlowTaskDto> flowTaskList = flowTaskWrapperMapper.queryTodoList(new QueryTodoTaskListVo(), SecurityUtil.getCurrentUser().getId());
172 176 if (CollectionUtils.isEmpty(flowTaskList)) {
... ...