|
@@ -41,6 +41,9 @@ public class TaskController {
|
|
|
|
|
|
private final ITaskCostService taskCostService;
|
|
|
|
|
|
+ /**
|
|
|
+ * 我的任务分页
|
|
|
+ */
|
|
|
|
|
|
@GetMapping("/my-task-page")
|
|
|
@ApiOperationSupport(order = 1)
|
|
@@ -51,14 +54,19 @@ public class TaskController {
|
|
|
return R.data(TaskWrapper.build().pageVO(page));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 我的任务统计
|
|
|
+ */
|
|
|
@GetMapping("/my-task-statistics")
|
|
|
- @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
|
@ApiOperation(value = "我的任务统计", notes = "")
|
|
|
- public R myTask() {
|
|
|
- //todo 我的任务统计
|
|
|
- return R.data(null);
|
|
|
+ public R myTask(@RequestParam Integer year, @RequestParam Integer month) {
|
|
|
+ return R.data(taskService.myTaskStatistics(year, month));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 创建、修改任务
|
|
|
+ */
|
|
|
@PostMapping("/submit")
|
|
|
@ApiOperation(value = "创建、修改任务", notes = "")
|
|
|
@ApiOperationSupport(order = 3)
|
|
@@ -77,11 +85,21 @@ public class TaskController {
|
|
|
return R.data(TaskWrapper.build().pageVO(page));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 删除任务
|
|
|
+ */
|
|
|
+ @GetMapping("/delete-project-task")
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperation(value = "删除项目任务", notes = "传入ids")
|
|
|
+ public R<Boolean> deleteTask(String ids) {
|
|
|
+ return R.status(taskService.removeByIds(Func.toLongList(ids)));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 任务详情
|
|
|
*/
|
|
|
@GetMapping("/detail")
|
|
|
- @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
|
@ApiOperation(value = "任务详情", notes = "传入任务主键id")
|
|
|
public R<TaskVO> detail(@RequestParam Long id) {
|
|
|
Task detail = taskService.getById(id);
|
|
@@ -92,7 +110,7 @@ public class TaskController {
|
|
|
* 任务成果文件
|
|
|
*/
|
|
|
@GetMapping("/result-file")
|
|
|
- @ApiOperationSupport(order = 6)
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
|
@ApiOperation(value = "任务成果文件", notes = "传入任务主键id")
|
|
|
public R<List<TaskFileVO>> files(@RequestParam Long id) {
|
|
|
List<TaskFile> files = taskFileService.fileList(id);
|
|
@@ -103,7 +121,7 @@ public class TaskController {
|
|
|
* 上传成果文件
|
|
|
*/
|
|
|
@GetMapping("/upload-file")
|
|
|
- @ApiOperationSupport(order = 7)
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
@ApiOperation(value = "上传成果文件", notes = "传入任务主键id,文件ids")
|
|
|
public R saveFile(@RequestParam Long taskId, @RequestParam String ids) {
|
|
|
return R.status(taskService.uploadFile(taskId, ids));
|
|
@@ -113,7 +131,7 @@ public class TaskController {
|
|
|
* 删除附件
|
|
|
*/
|
|
|
@GetMapping("/delete-file")
|
|
|
- @ApiOperationSupport(order = 8)
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
|
@ApiOperation(value = "删除附件", notes = "传入主键ids")
|
|
|
public R deleteFile(@RequestParam String ids) {
|
|
|
return R.status(taskService.deleteFile(ids));
|
|
@@ -123,7 +141,7 @@ public class TaskController {
|
|
|
* 移动文件
|
|
|
*/
|
|
|
@GetMapping("/move-file")
|
|
|
- @ApiOperationSupport(order = 9)
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
@ApiOperation(value = "移动文件", notes = "")
|
|
|
public R moveFile(@RequestParam Long stageId, @RequestParam Long folderId, @RequestParam String fileIds) {
|
|
|
return R.status(taskService.moveFile(stageId, folderId, fileIds));
|
|
@@ -133,7 +151,7 @@ public class TaskController {
|
|
|
* 任务相关动态
|
|
|
*/
|
|
|
@GetMapping("/task-log")
|
|
|
- @ApiOperationSupport(order = 10)
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
|
@ApiOperation(value = "任务相关动态", notes = "传入任务主键id")
|
|
|
public R<IPage<TaskLogVO>> taskLog(Long id, Query query) {
|
|
|
LambdaQueryWrapper<TaskLog> lqw = new LambdaQueryWrapper<>();
|
|
@@ -147,7 +165,7 @@ public class TaskController {
|
|
|
* 添加任务相关合同
|
|
|
*/
|
|
|
@PostMapping("/submit-task-contract")
|
|
|
- @ApiOperationSupport(order = 11)
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
|
@ApiOperation(value = "新增或者修改任务合同", notes = "")
|
|
|
public R<Boolean> submitContracts(@RequestBody @Valid TaskContract contract) {
|
|
|
return R.status(taskContractService.saveOrUpdate(contract));
|
|
@@ -158,7 +176,7 @@ public class TaskController {
|
|
|
* 删除任务合同
|
|
|
*/
|
|
|
@GetMapping("/delete-task-contract")
|
|
|
- @ApiOperationSupport(order = 12)
|
|
|
+ @ApiOperationSupport(order = 13)
|
|
|
@ApiOperation(value = "删除任务合同", notes = "传入主键ids")
|
|
|
public R<Boolean> deleteContracts(@RequestParam String ids) {
|
|
|
return R.status(taskContractService.removeByIds(Func.toLongList(ids)));
|
|
@@ -168,7 +186,7 @@ public class TaskController {
|
|
|
* 任务合同分页
|
|
|
*/
|
|
|
@GetMapping("/task-contract-page")
|
|
|
- @ApiOperationSupport(order = 13)
|
|
|
+ @ApiOperationSupport(order = 14)
|
|
|
@ApiOperation(value = "任务合同分页", notes = "传入主键taskId,分页参数")
|
|
|
public R<IPage<TaskContractVO>> contractPage(@RequestParam Long taskId, Query query) {
|
|
|
IPage<TaskContract> page = taskContractService.pageByTaskId(taskId, Condition.getPage(query));
|
|
@@ -180,7 +198,7 @@ public class TaskController {
|
|
|
* 任务成本核算
|
|
|
*/
|
|
|
@PostMapping("/submit-task-cost")
|
|
|
- @ApiOperationSupport(order = 14)
|
|
|
+ @ApiOperationSupport(order = 15)
|
|
|
@ApiOperation(value = "新增或修改任务成本", notes = "")
|
|
|
public R<Boolean> submitCost(@RequestBody TaskCost cost) {
|
|
|
return R.data(taskCostService.saveOrUpdate(cost));
|
|
@@ -190,7 +208,7 @@ public class TaskController {
|
|
|
* 任务成本详情
|
|
|
*/
|
|
|
@GetMapping("/task-cost-detail")
|
|
|
- @ApiOperationSupport(order = 15)
|
|
|
+ @ApiOperationSupport(order = 16)
|
|
|
@ApiOperation(value = "成本详情", notes = "")
|
|
|
public R<TaskCostVO> costDetail(@RequestParam Long id) {
|
|
|
TaskCost detail = taskCostService.getById(id);
|
|
@@ -201,7 +219,7 @@ public class TaskController {
|
|
|
* 删除成本记录
|
|
|
*/
|
|
|
@GetMapping("/delete-task-cost")
|
|
|
- @ApiOperationSupport(order = 16)
|
|
|
+ @ApiOperationSupport(order = 17)
|
|
|
@ApiOperation(value = "删除成本记录", notes = "传入主键ids")
|
|
|
public R<Boolean> deleteCost(@RequestParam String ids) {
|
|
|
return R.status(taskCostService.removeByIds(Func.toLongList(ids)));
|
|
@@ -211,7 +229,7 @@ public class TaskController {
|
|
|
* 成本分页
|
|
|
*/
|
|
|
@GetMapping("/task-cost-page")
|
|
|
- @ApiOperationSupport(order = 17)
|
|
|
+ @ApiOperationSupport(order = 18)
|
|
|
@ApiOperation(value = "成本分页", notes = "传入taskId,分页参数")
|
|
|
public R<IPage<TaskCostVO>> costPage(@RequestParam Long taskId, Query query) {
|
|
|
IPage<TaskCost> page = taskCostService.pageByTaskId(taskId, Condition.getPage(query));
|
|
@@ -222,7 +240,7 @@ public class TaskController {
|
|
|
* 成本统计
|
|
|
*/
|
|
|
@GetMapping("/task-cost-statistics")
|
|
|
- @ApiOperationSupport(order = 18)
|
|
|
+ @ApiOperationSupport(order = 19)
|
|
|
@ApiOperation(value = "任务成本统计", notes = "传入taskId数")
|
|
|
public R<JSONObject> costStatistics(@RequestParam Long taskId) {
|
|
|
return R.data(taskCostService.costStatistics(taskId));
|