|
@@ -4,14 +4,17 @@ import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
|
|
|
import com.wtkj.entity.Task;
|
|
|
+import com.wtkj.entity.TaskContract;
|
|
|
import com.wtkj.entity.TaskFile;
|
|
|
import com.wtkj.entity.TaskLog;
|
|
|
+import com.wtkj.service.ITaskContractService;
|
|
|
import com.wtkj.service.ITaskFileService;
|
|
|
import com.wtkj.service.ITaskLogService;
|
|
|
import com.wtkj.service.ITaskService;
|
|
|
import com.wtkj.vo.TaskFileVO;
|
|
|
import com.wtkj.vo.TaskLogVO;
|
|
|
import com.wtkj.vo.TaskVO;
|
|
|
+import com.wtkj.wrapper.TaskContractWrapper;
|
|
|
import com.wtkj.wrapper.TaskFileWrapper;
|
|
|
import com.wtkj.wrapper.TaskLogWrapper;
|
|
|
import com.wtkj.wrapper.TaskWrapper;
|
|
@@ -21,6 +24,7 @@ import lombok.AllArgsConstructor;
|
|
|
import org.springblade.core.mp.support.Condition;
|
|
|
import org.springblade.core.mp.support.Query;
|
|
|
import org.springblade.core.tool.api.R;
|
|
|
+import org.springblade.core.tool.utils.Func;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
@@ -43,9 +47,29 @@ public class TaskController {
|
|
|
|
|
|
private final ITaskFileService taskFileService;
|
|
|
|
|
|
+ private final ITaskContractService taskContractService;
|
|
|
+
|
|
|
+
|
|
|
+ @GetMapping("/my-task-page")
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation(value = "我的任务列表", notes = "type:1:全部 2:我创建的 3:我执行的")
|
|
|
+ public R<IPage<TaskVO>> myTaskPage(@RequestParam(defaultValue = "1") Integer type, @RequestParam(defaultValue = "0") Integer isGroup,
|
|
|
+ Integer year, Integer month, Query query) {
|
|
|
+ IPage<Task> page = taskService.myTaskPage(type, isGroup, year, month, Condition.getPage(query));
|
|
|
+ return R.data(TaskWrapper.build().pageVO(page));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/my-task-statistics")
|
|
|
+ @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperation(value = "我的任务统计", notes = "")
|
|
|
+ public R myTask() {
|
|
|
+ //todo 我的任务统计
|
|
|
+ return R.data(null);
|
|
|
+ }
|
|
|
+
|
|
|
@PostMapping("/submit")
|
|
|
@ApiOperation(value = "创建、修改任务", notes = "")
|
|
|
- @ApiOperationSupport(order = 1)
|
|
|
+ @ApiOperationSupport(order = 3)
|
|
|
public R<Boolean> submitTask(@RequestBody @Valid Task task) {
|
|
|
return R.status(taskService.submit(task));
|
|
|
}
|
|
@@ -54,7 +78,7 @@ public class TaskController {
|
|
|
* 项目任务列表
|
|
|
*/
|
|
|
@GetMapping("/project-task-page")
|
|
|
- @ApiOperationSupport(order = 2)
|
|
|
+ @ApiOperationSupport(order = 4)
|
|
|
@ApiOperation(value = "项目任务列表", notes = "传入projectId,分页参数")
|
|
|
public R<IPage<TaskVO>> projectTask(@RequestParam Long projectId, Query query) {
|
|
|
IPage<Task> page = taskService.projectTaskPage(projectId, Condition.getPage(query));
|
|
@@ -65,7 +89,7 @@ public class TaskController {
|
|
|
* 任务详情
|
|
|
*/
|
|
|
@GetMapping("/detail")
|
|
|
- @ApiOperationSupport(order = 3)
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
|
@ApiOperation(value = "任务详情", notes = "传入任务主键id")
|
|
|
public R<TaskVO> detail(@RequestParam Long id) {
|
|
|
Task detail = taskService.getById(id);
|
|
@@ -76,7 +100,7 @@ public class TaskController {
|
|
|
* 任务成果文件
|
|
|
*/
|
|
|
@GetMapping("/result-file")
|
|
|
- @ApiOperationSupport(order = 3)
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
|
@ApiOperation(value = "任务成果文件", notes = "传入任务主键id")
|
|
|
public R<List<TaskFileVO>> files(@RequestParam Long id) {
|
|
|
List<TaskFile> files = taskFileService.fileList(id);
|
|
@@ -87,7 +111,7 @@ public class TaskController {
|
|
|
* 上传成果文件
|
|
|
*/
|
|
|
@GetMapping("/upload-file")
|
|
|
- @ApiOperationSupport(order = 4)
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
|
@ApiOperation(value = "上传成果文件", notes = "传入任务主键id,文件ids")
|
|
|
public R saveFile(@RequestParam Long taskId, @RequestParam String ids) {
|
|
|
return R.status(taskService.uploadFile(taskId, ids));
|
|
@@ -97,7 +121,7 @@ public class TaskController {
|
|
|
* 删除附件
|
|
|
*/
|
|
|
@GetMapping("/delete-file")
|
|
|
- @ApiOperationSupport(order = 5)
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
|
@ApiOperation(value = "删除附件", notes = "传入主键ids")
|
|
|
public R deleteFile(@RequestParam String ids) {
|
|
|
return R.status(taskService.deleteFile(ids));
|
|
@@ -107,7 +131,7 @@ public class TaskController {
|
|
|
* 移动文件
|
|
|
*/
|
|
|
@GetMapping("/move-file")
|
|
|
- @ApiOperationSupport(order = 6)
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
|
@ApiOperation(value = "移动文件", notes = "")
|
|
|
public R moveFile(@RequestParam Long stageId, @RequestParam Long folderId, @RequestParam String fileIds) {
|
|
|
return R.status(taskService.moveFile(stageId, folderId, fileIds));
|
|
@@ -117,7 +141,7 @@ public class TaskController {
|
|
|
* 任务相关动态
|
|
|
*/
|
|
|
@GetMapping("/task-log")
|
|
|
- @ApiOperationSupport(order = 8)
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
@ApiOperation(value = "任务相关动态", notes = "传入任务主键id")
|
|
|
public R<IPage<TaskLogVO>> taskLog(Long id, Query query) {
|
|
|
LambdaQueryWrapper<TaskLog> lqw = new LambdaQueryWrapper<>();
|
|
@@ -128,8 +152,37 @@ public class TaskController {
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- *
|
|
|
+ * 添加任务相关合同
|
|
|
+ */
|
|
|
+ @PostMapping("/submit-task-contract")
|
|
|
+ @ApiOperationSupport(order = 11)
|
|
|
+ @ApiOperation(value = "新增或者修改任务合同", notes = "")
|
|
|
+ public R<Boolean> savaContracts(@RequestBody @Valid TaskContract contract) {
|
|
|
+ return R.status(taskContractService.saveOrUpdate(contract));
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 删除任务合同
|
|
|
+ */
|
|
|
+ @GetMapping("/delete-task-contract")
|
|
|
+ @ApiOperationSupport(order = 12)
|
|
|
+ @ApiOperation(value = "删除任务合同", notes = "传入主键ids")
|
|
|
+ public R<Boolean> deleteContracts(@RequestParam String ids) {
|
|
|
+ return R.status(taskContractService.removeByIds(Func.toLongList(ids)));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 任务合同分页
|
|
|
*/
|
|
|
+ @GetMapping("/task-contract-page")
|
|
|
+ @ApiOperationSupport(order = 13)
|
|
|
+ @ApiOperation(value = "任务合同分页", notes = "传入主键taskId,分页参数")
|
|
|
+ public R contractPage(@RequestParam Long taskId, Query query) {
|
|
|
+ IPage<TaskContract> page = taskContractService.pageByTaskId(taskId, Condition.getPage(query));
|
|
|
+ return R.data(TaskContractWrapper.build().pageVO(page));
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
}
|