|
@@ -596,8 +596,10 @@ public class PreparationServiceImpl extends BaseServiceImpl<PreparationMapper, P
|
|
|
// 修改进度状态
|
|
|
mapper.updateByPrimaryKeySelective(updPre);
|
|
|
// 发送消息
|
|
|
- List<SysUserVO> userVOS = sysUserMapper.getSysUserVO(queryDTO);
|
|
|
- sendMessageToApplyLeader(userVOS, preparation);
|
|
|
+ if(!StringUtils.isEmpty(queryDTO.getUserId())){
|
|
|
+ List<SysUserVO> userVOS = sysUserMapper.getSysUserVO(queryDTO);
|
|
|
+ sendMessageToApplyLeader(userVOS, preparation);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|