| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- package jnpf.controller;
- import cn.dev33.satoken.annotation.SaCheckPermission;
- import io.swagger.v3.oas.annotations.Operation;
- import io.swagger.v3.oas.annotations.Parameter;
- import io.swagger.v3.oas.annotations.Parameters;
- import io.swagger.v3.oas.annotations.tags.Tag;
- import jnpf.annotation.EncryptApi;
- import jnpf.base.ActionResult;
- import jnpf.base.Page;
- import jnpf.base.controller.SuperController;
- import jnpf.base.vo.ListVO;
- import jnpf.constant.MsgCode;
- import jnpf.entity.ProjectGanttEntity;
- import jnpf.exception.DataException;
- import jnpf.model.projectgantt.*;
- import jnpf.permission.entity.UserEntity;
- import jnpf.permission.service.UserService;
- import jnpf.service.ProjectGanttService;
- import jnpf.util.JsonUtil;
- import jnpf.util.JsonUtilEx;
- import jnpf.util.UploaderUtil;
- import jnpf.util.treeutil.ListToTreeUtil;
- import jnpf.util.treeutil.SumTree;
- import jnpf.util.treeutil.TreeDotUtils;
- import org.apache.commons.lang3.StringUtils;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import jakarta.validation.Valid;
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.List;
- import java.util.stream.Collectors;
- /**
- * 项目计划
- *
- * @author JNPF开发平台组
- * @version V3.1.0
- * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
- * @date 2019年9月26日 上午9:18
- */
- @Tag(name = "项目计划", description = "ProjectGantt")
- @RestController
- @RequestMapping("/api/extend/ProjectGantt")
- public class ProjectGanttController extends SuperController<ProjectGanttService, ProjectGanttEntity> {
- @Autowired
- private ProjectGanttService projectGanttService;
- @Autowired
- private UserService userService;
- /**
- * 项目列表
- *
- * @param page 分页模型
- * @return
- */
- @Operation(summary = "获取项目管理列表")
- @GetMapping
- @SaCheckPermission("extend.projectGantt")
- public ActionResult<ListVO<ProjectGanttListVO>> list(Page page) {
- List<ProjectGanttEntity> data = projectGanttService.getList(page);
- List<ProjectGanttListVO> list = JsonUtil.getJsonToList(data, ProjectGanttListVO.class);
- //获取用户给项目参与人员列表赋值
- List<String> userId = new ArrayList<>();
- list.forEach(t -> {
- String[] ids = t.getManagerIds().split(",");
- Collections.addAll(userId, ids);
- });
- List<UserEntity> userList = userService.getUserName(userId);
- for (ProjectGanttListVO vo : list) {
- List<String> managerList = new ArrayList<>();
- Collections.addAll(managerList, vo.getManagerIds().split(","));
- List<UserEntity> user = userList.stream().filter(t -> managerList.contains(t.getId())).collect(Collectors.toList());
- List<ProjectGanttManagerIModel> list1 = new ArrayList<>();
- user.forEach(t -> {
- ProjectGanttManagerIModel model1 = new ProjectGanttManagerIModel();
- model1.setAccount(t.getRealName() + "/" + t.getAccount());
- model1.setHeadIcon(UploaderUtil.uploaderImg(t.getHeadIcon()));
- list1.add(model1);
- });
- vo.setManagersInfo(list1);
- }
- ListVO listVO = new ListVO<>();
- listVO.setList(list);
- return ActionResult.success(listVO);
- }
- /**
- * 任务列表
- *
- * @param page 分页模型
- * @param projectId 主键
- * @return
- */
- @Operation(summary = "获取项目任务列表")
- @GetMapping("/{projectId}/Task")
- @Parameters({
- @Parameter(name = "projectId", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult<ListVO<ProjectGanttTaskTreeVO>> taskList(Page page, @PathVariable("projectId") String projectId) {
- List<ProjectGanttEntity> data = projectGanttService.getTaskList(projectId);
- List<ProjectGanttEntity> dataAll = data;
- if (!StringUtils.isEmpty(page.getKeyword())) {
- data = data.stream().filter(t -> String.valueOf(t.getFullName()).contains(page.getKeyword()) || String.valueOf(t.getEnCode()).contains(page.getKeyword())).collect(Collectors.toList());
- }
- List<ProjectGanttEntity> list = JsonUtil.getJsonToList(ListToTreeUtil.treeWhere(data, dataAll), ProjectGanttEntity.class);
- List<ProjectGanttTreeModel> treeList = JsonUtil.getJsonToList(list, ProjectGanttTreeModel.class);
- List<SumTree<ProjectGanttTreeModel>> trees = TreeDotUtils.convertListToTreeDot(treeList);
- List<ProjectGanttTaskTreeVO> listVO = JsonUtil.getJsonToList(trees, ProjectGanttTaskTreeVO.class);
- ListVO vo = new ListVO();
- vo.setList(listVO);
- return ActionResult.success(vo);
- }
- /**
- * 任务树形
- *
- * @param projectId 主键
- * @param id 主键
- * @return
- */
- @Operation(summary = "获取项目计划任务树形(新建任务)")
- @GetMapping("/{projectId}/Task/Selector/{id}")
- @Parameters({
- @Parameter(name = "projectId", description = "主键",required = true),
- @Parameter(name = "id", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult<ListVO<ProjectGanttTaskTreeVO>> taskTreeView(@PathVariable("projectId") String projectId, @PathVariable("id") String id) {
- List<ProjectGanttTaskTreeModel> treeList = new ArrayList<>();
- List<ProjectGanttEntity> data = projectGanttService.getTaskList(projectId);
- if (!"0".equals(id)) {
- //上级不能选择自己
- data.remove(projectGanttService.getInfo(id));
- }
- for (ProjectGanttEntity entity : data) {
- ProjectGanttTaskTreeModel treeModel = new ProjectGanttTaskTreeModel();
- treeModel.setId(entity.getId());
- treeModel.setFullName(entity.getFullName());
- treeModel.setParentId(entity.getParentId());
- treeList.add(treeModel);
- }
- List<SumTree<ProjectGanttTaskTreeModel>> trees = TreeDotUtils.convertListToTreeDotFilter(treeList);
- List<ProjectGanttTaskTreeVO> listVO = JsonUtil.getJsonToList(trees, ProjectGanttTaskTreeVO.class);
- ListVO vo = new ListVO();
- vo.setList(listVO);
- return ActionResult.success(vo);
- }
- /**
- * 信息
- *
- * @param id 主键
- * @return
- */
- @Operation(summary = "获取项目计划信息")
- @GetMapping("/{id}")
- @Parameters({
- @Parameter(name = "id", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult<ProjectGanttInfoVO> info(@PathVariable("id") String id) throws DataException {
- ProjectGanttEntity entity = projectGanttService.getInfo(id);
- ProjectGanttInfoVO vo = JsonUtil.getJsonToBeanEx(entity, ProjectGanttInfoVO.class);
- return ActionResult.success(vo);
- }
- /**
- * 信息
- *
- * @param id 主键
- * @return
- */
- @Operation(summary = "获取项目计划信息")
- @GetMapping("Task/{id}")
- @Parameters({
- @Parameter(name = "id", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult<ProjectGanttTaskInfoVO> taskInfo(@PathVariable("id") String id) throws DataException {
- ProjectGanttEntity entity = projectGanttService.getInfo(id);
- ProjectGanttTaskInfoVO vo = JsonUtil.getJsonToBeanEx(entity, ProjectGanttTaskInfoVO.class);
- return ActionResult.success(vo);
- }
- /**
- * 删除
- *
- * @param id 主键
- * @return
- */
- @Operation(summary = "删除项目计划/任务")
- @DeleteMapping("/{id}")
- @Parameters({
- @Parameter(name = "id", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult delete(@PathVariable("id") String id) {
- if (projectGanttService.allowDelete(id)) {
- ProjectGanttEntity entity = projectGanttService.getInfo(id);
- if (entity != null) {
- projectGanttService.delete(entity);
- return ActionResult.success(MsgCode.SU003.get());
- }
- return ActionResult.fail(MsgCode.FA003.get());
- } else {
- return ActionResult.fail(MsgCode.ETD112.get());
- }
- }
- /**
- * 创建
- *
- * @param projectGanttCrForm 项目模型
- * @return
- */
- @EncryptApi
- @Operation(summary = "添加项目计划")
- @PostMapping
- @Parameters({
- @Parameter(name = "projectGanttCrForm", description = "项目模型",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult create(@RequestBody @Valid ProjectGanttCrForm projectGanttCrForm) {
- ProjectGanttEntity entity = JsonUtil.getJsonToBean(projectGanttCrForm, ProjectGanttEntity.class);
- entity.setType(1);
- entity.setParentId("0");
- if (projectGanttService.isExistByFullName(projectGanttCrForm.getFullName(), entity.getId())) {
- return ActionResult.fail(MsgCode.EXIST001.get());
- }
- if (projectGanttService.isExistByEnCode(projectGanttCrForm.getEnCode(), entity.getId())) {
- return ActionResult.fail(MsgCode.EXIST002.get());
- }
- projectGanttService.create(entity);
- return ActionResult.success(MsgCode.SU001.get());
- }
- /**
- * 编辑
- *
- * @param id 主键
- * @param projectGanttUpForm 项目模型
- * @return
- */
- @Operation(summary = "修改项目计划")
- @PutMapping("/{id}")
- @Parameters({
- @Parameter(name = "id", description = "主键",required = true),
- @Parameter(name = "projectGanttUpForm", description = "项目模型",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult update(@PathVariable("id") String id, @RequestBody @Valid ProjectGanttUpForm projectGanttUpForm) {
- ProjectGanttEntity entity = JsonUtil.getJsonToBean(projectGanttUpForm, ProjectGanttEntity.class);
- if (projectGanttService.isExistByFullName(projectGanttUpForm.getFullName(), id)) {
- return ActionResult.fail(MsgCode.EXIST001.get());
- }
- if (projectGanttService.isExistByEnCode(projectGanttUpForm.getEnCode(), id)) {
- return ActionResult.fail(MsgCode.EXIST002.get());
- }
- boolean flag = projectGanttService.update(id, entity);
- if (flag == false) {
- return ActionResult.fail(MsgCode.FA002.get());
- }
- return ActionResult.success(MsgCode.SU004.get());
- }
- /**
- * 创建
- *
- * @param projectGanttTsakCrForm 项目模型
- * @return
- */
- @Operation(summary = "添加项目任务")
- @PostMapping("/Task")
- @Parameters({
- @Parameter(name = "projectGanttTsakCrForm", description = "项目模型",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult createTask(@RequestBody @Valid ProjectGanttTsakCrForm projectGanttTsakCrForm) {
- ProjectGanttEntity entity = JsonUtil.getJsonToBean(projectGanttTsakCrForm, ProjectGanttEntity.class);
- entity.setType(2);
- if (projectGanttService.isExistByFullName(projectGanttTsakCrForm.getFullName(), entity.getId())) {
- return ActionResult.fail(MsgCode.EXIST001.get());
- }
- projectGanttService.create(entity);
- return ActionResult.success(MsgCode.SU001.get());
- }
- /**
- * 编辑
- *
- * @param id 主键
- * @param projectGanttTsakCrForm 项目模型
- * @return
- */
- @Operation(summary = "修改项目任务")
- @PutMapping("/Task/{id}")
- @Parameters({
- @Parameter(name = "projectGanttTsakCrForm", description = "项目模型",required = true),
- @Parameter(name = "id", description = "主键",required = true),
- })
- @SaCheckPermission("extend.projectGantt")
- public ActionResult updateTask(@PathVariable("id") String id, @RequestBody @Valid ProjectGanttTsakUpForm projectGanttTsakCrForm) {
- ProjectGanttEntity entity = JsonUtil.getJsonToBean(projectGanttTsakCrForm, ProjectGanttEntity.class);
- if (projectGanttService.isExistByFullName(projectGanttTsakCrForm.getFullName(), id)) {
- return ActionResult.fail(MsgCode.EXIST001.get());
- }
- boolean flag = projectGanttService.update(id, entity);
- if (flag == false) {
- return ActionResult.fail(MsgCode.FA002.get());
- }
- return ActionResult.success(MsgCode.SU004.get());
- }
- }
|