|
@@ -237,7 +237,9 @@ public class ReportCancellApplyService extends ServiceImpl<ReportCancellApplyMap
|
|
|
*/
|
|
|
public IPage<ReportInfoDto> findList(Page<ReportInfoDto> page, ReportInfoDto reportInfoDto) throws Exception{
|
|
|
QueryWrapper<ReportInfoDto> queryWrapper = QueryWrapperGenerator.buildQueryCondition (reportInfoDto,ReportInfoDto.class);
|
|
|
-
|
|
|
+ //获取当前登录人信息
|
|
|
+ UserDTO userDTO = UserUtils.getCurrentUserDTO();
|
|
|
+ queryWrapper.eq("a.create_by",userDTO.getId());
|
|
|
queryWrapper.eq("a.del_flag","0");
|
|
|
queryWrapper.eq("a.status","5");
|
|
|
queryWrapper.eq("b.delete_sign","0");
|