修改了查询结项后不能查看的问题
parent
7dbf52d915
commit
aa7f9612da
|
@ -117,9 +117,6 @@ public class TaskController {
|
|||
@RequestHeader(TokenUtils.HEADER_TOKEN) String token,
|
||||
@PathVariable Integer projectId
|
||||
) {
|
||||
if (!projectService.checkOpenStatus(projectId)) {
|
||||
throw new BadRequestException(IProjectService.PROJECT_UNOPENED);
|
||||
}
|
||||
return ResponseMap.ofSuccess("查询成功", taskService.getProjectProcessOfEveryone(token, projectId));
|
||||
}
|
||||
|
||||
|
@ -130,9 +127,6 @@ public class TaskController {
|
|||
@PathVariable Integer projectId,
|
||||
@PathVariable(required = false) Integer staffId
|
||||
) {
|
||||
if (!projectService.checkOpenStatus(projectId)) {
|
||||
throw new BadRequestException(IProjectService.PROJECT_UNOPENED);
|
||||
}
|
||||
return ResponseList.ofSuccess("查询成功", taskService.getProjectStatistics(token, projectId, staffId));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue