| | |
| | | package com.ycl.service.impl; |
| | | |
| | | |
| | | import cn.hutool.core.collection.CollUtil; |
| | | import cn.hutool.core.util.ObjectUtil; |
| | | import cn.hutool.core.util.ZipUtil; |
| | | import com.alibaba.excel.EasyExcel; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.common.base.Result; |
| | | import com.ycl.common.config.SysConfig; |
| | | import com.ycl.common.constant.Constants; |
| | | import com.ycl.common.enums.business.FileTypeEnum; |
| | | import com.ycl.common.enums.business.ImportanceTypeEnum; |
| | | import com.ycl.common.enums.business.ProjectCategoryEnum; |
| | |
| | | import com.ycl.domain.entity.*; |
| | | import com.ycl.domain.excel.ProjectExcelTemplate; |
| | | import com.ycl.domain.form.DocumentInfoForm; |
| | | import com.ycl.domain.form.PlanForm; |
| | | import com.ycl.domain.form.ProjectInfoForm; |
| | | import com.ycl.domain.query.ProjectExportQuery; |
| | | import com.ycl.domain.query.ProjectInfoQuery; |
| | |
| | | import com.ycl.service.FileService; |
| | | import com.ycl.service.ProjectInfoService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.apache.commons.codec.Charsets; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | import org.springframework.util.Assert; |
| | | |
| | | import javax.servlet.ServletOutputStream; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.FileOutputStream; |
| | | import java.io.IOException; |
| | | import java.math.BigDecimal; |
| | | import java.math.RoundingMode; |
| | | import java.net.URLEncoder; |
| | | import java.nio.charset.StandardCharsets; |
| | | import java.nio.file.Files; |
| | | import java.nio.file.StandardCopyOption; |
| | | import java.text.SimpleDateFormat; |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | import java.util.zip.ZipOutputStream; |
| | | |
| | | /** |
| | | * 项目管理基础信息表 服务实现类 |
| | |
| | | private final ProjectUnitRegistrationInfoMapper unitRegistrationInfoMapper; |
| | | private final FileService fileService; |
| | | private final FileMapper fileMapper; |
| | | private final PlanMapper planMapper; |
| | | |
| | | /** |
| | | * 添加 |
| | |
| | | entity.setCreateBy(userId); |
| | | entity.setUpdateBy(userId); |
| | | baseMapper.insert(entity); |
| | | addPlan(entity.getId()); //添加计划表 |
| | | //添加文件 |
| | | List<File> fileList = form.getFileList(); |
| | | fileList.forEach(item -> { |
| | |
| | | }); |
| | | fileService.saveBatch(fileList); |
| | | return Result.ok("添加成功").data(entity.getId()); |
| | | } |
| | | |
| | | public void addPlan(Long projectInfoId) { |
| | | Plan plan = new Plan(); |
| | | plan.setProjectInfoId(projectInfoId); |
| | | plan.setReportStatus(1); |
| | | plan.setMonthStatus(1); |
| | | plan.setSeasonStatus(1); |
| | | plan.setYearStatus(1); |
| | | plan.setDeleted(0); |
| | | planMapper.insert(plan); |
| | | } |
| | | |
| | | /** |
| | |
| | | ProjectInfo projectInfo = baseMapper.selectById(recordId); |
| | | // 判断当前用户id是否在主管列表中 |
| | | String competentDepartment = projectInfo.getCompetentDepartment(); |
| | | if (StringUtils.isEmpty(competentDepartment)){ |
| | | return Result.ok().data(false); |
| | | } |
| | | List<String> list = Arrays.asList(competentDepartment.split(",")); |
| | | // 获得当前用户id |
| | | Long userId = SecurityUtils.getUserId(); |
| | |
| | | } |
| | | |
| | | @Override |
| | | public void export(HttpServletResponse response, ProjectExportQuery query) { |
| | | public void export(HttpServletResponse response, ProjectExportQuery query) throws IOException { |
| | | List<ProjectVO> data = baseMapper.selectProjectDetailByIds(query.getDataIdList()); |
| | | List<ProjectExcelTemplate> excelList = new ArrayList<>(); |
| | | //字典作翻译 |
| | | data.forEach(item->{ |
| | | data.forEach(item -> { |
| | | ProjectExcelTemplate excel = new ProjectExcelTemplate(); |
| | | BeanUtils.copyProperties(item,excel); |
| | | BeanUtils.copyProperties(item, excel); |
| | | //项目阶段 |
| | | excel.setProjectPhase(ProjectCategoryEnum.getPhaseByProjectStatus(item.getProjectStatus(),item.getProcessId()!=null)); |
| | | excel.setProjectPhase(ProjectCategoryEnum.getPhaseByProjectStatus(item.getProjectStatus(), item.getProcessId() != null)); |
| | | excelList.add(excel); |
| | | }); |
| | | //补充文件的字段 |
| | | Set<Integer> indexes = OutputExcelUtils.getSelectFields(query.getFieldList(), ProjectExcelTemplate.class); |
| | | //不需要附件 |
| | | if(!query.getRequireFile()) { |
| | | if (!query.getRequireFile()) { |
| | | try (ServletOutputStream outputStream = response.getOutputStream()) { |
| | | EasyExcel.write(outputStream, ProjectExcelTemplate.class).includeColumnIndexes(indexes).sheet("项目列表").doWrite(excelList); |
| | | } catch (Exception e) { |
| | | log.error(e.getMessage(), e); |
| | | throw new BaseException("导出失败:" + e.getMessage()); |
| | | } |
| | | } else { |
| | | //需要附件,导出为zip |
| | | response.setContentType("application/zip"); |
| | | response.setCharacterEncoding(Charsets.UTF_8.name()); |
| | | String fileName = URLEncoder.encode("项目列表", Charsets.UTF_8); |
| | | response.setHeader("Content-disposition", "attachment;filename=" + fileName + ".zip"); |
| | | |
| | | java.io.File tempDir = null; |
| | | try { |
| | | //查出附件 |
| | | List<File> projectInfoFiles = fileMapper.selectList(new QueryWrapper<File>() |
| | | .in("bus_id", data.stream().map(ProjectVO::getId).collect(Collectors.toList())) |
| | | .and(q -> q.eq("type", FileTypeEnum.PROJECT_INFO.getType()).or().eq("type", FileTypeEnum.DOCUMENT_INFO.getType())) |
| | | ); |
| | | List<File> policyFiles = fileMapper.selectList(new QueryWrapper<File>() |
| | | .in("bus_id", data.stream().map(ProjectVO::getPolicyId).collect(Collectors.toList())) |
| | | .eq("type", FileTypeEnum.INVEST_POLICY.getType()) |
| | | ); |
| | | projectInfoFiles.addAll(policyFiles); |
| | | projectInfoFiles.forEach(file -> { |
| | | data.forEach(item -> { |
| | | if (FileTypeEnum.PROJECT_INFO.equals(file.getType())) { |
| | | if (file.getBusId().equals(item.getId())) { |
| | | //审批计划书 |
| | | item.setApprovalPlan(file.getOriginalName()); |
| | | } |
| | | } else if (FileTypeEnum.DOCUMENT_INFO.equals(file.getType())) { |
| | | if (file.getBusId().equals(item.getId())) { |
| | | //相关文书 |
| | | item.setDocuments(file.getOriginalName()); |
| | | } |
| | | } else if (FileTypeEnum.INVEST_POLICY.equals(file.getType())) { |
| | | if (file.getBusId().equals(item.getPolicyId())) { |
| | | //符合产业政策附件 |
| | | item.setPolicyComplianceAttachment(file.getOriginalName()); |
| | | } |
| | | } |
| | | }); |
| | | |
| | | }); |
| | | // 创建临时目录 |
| | | tempDir = Files.createTempDirectory("temp").toFile(); |
| | | |
| | | java.io.File templateDir = new java.io.File(tempDir, "template"); |
| | | if (!templateDir.exists()) { |
| | | templateDir.mkdirs(); |
| | | } |
| | | |
| | | // 创建 Excel 文件 |
| | | java.io.File excelFile = new java.io.File(templateDir, "excel.xlsx"); |
| | | if (!excelFile.exists()) { |
| | | excelFile.createNewFile(); |
| | | } |
| | | |
| | | // 写入 Excel 模板数据 |
| | | try (FileOutputStream fileOutputStream = new FileOutputStream(excelFile, false)) { |
| | | EasyExcel.write(fileOutputStream, ProjectExcelTemplate.class).sheet("项目列表").doWrite(excelList); |
| | | } |
| | | |
| | | // 创建附件目录 |
| | | java.io.File attachmentDir = new java.io.File(templateDir, "attachment"); |
| | | if (!attachmentDir.exists()) { |
| | | attachmentDir.mkdirs(); |
| | | } |
| | | |
| | | //将附件复制导目录下 |
| | | for (File item : projectInfoFiles) { |
| | | String url = item.getUrl(); |
| | | if (StringUtils.isBlank(url)) continue; |
| | | url = url.replaceFirst(Constants.RESOURCE_PREFIX, SysConfig.getProfile()); |
| | | // 直接使用File类处理系统路径 |
| | | java.io.File sourceFile = new java.io.File(url); |
| | | if (!sourceFile.exists() || !sourceFile.isFile()) { |
| | | // 处理文件不存在或不是文件的情况 |
| | | continue; // 或者记录日志、抛出异常等 |
| | | } |
| | | // 目标文件路径,使用attachmentDir作为父目录,并保持原文件名 |
| | | java.io.File targetFile = new java.io.File(attachmentDir, sourceFile.getName()); |
| | | // 复制文件 |
| | | try { |
| | | Files.copy(sourceFile.toPath(), targetFile.toPath(), StandardCopyOption.REPLACE_EXISTING); |
| | | } catch (IOException e) { |
| | | log.error(e.getMessage()); |
| | | } |
| | | } |
| | | // 打包 ZIP 文件 |
| | | java.io.File zipFile = ZipUtil.zip(templateDir); |
| | | byte[] zipBytes = Files.readAllBytes(zipFile.toPath()); |
| | | |
| | | // 将 ZIP 文件写入响应 |
| | | try (ServletOutputStream outputStream = response.getOutputStream()) { |
| | | outputStream.write(zipBytes); |
| | | } |
| | | } finally { |
| | | OutputExcelUtils.deleteDirectoryOrFile(tempDir); |
| | | } |
| | | } |
| | | //TODO:需要附件 |
| | | } |
| | | |
| | | @Override |
| | | public Result updateUsedStatus(Integer id, Integer usedStatus) { |
| | | ProjectInfo entity = baseMapper.selectById(id); |
| | | // 为空抛IllegalArgumentException,做全局异常处理 |
| | | Assert.notNull(entity, "记录不存在"); |
| | | entity.setUsedStatus(usedStatus); |
| | | baseMapper.updateById(entity); |
| | | return Result.ok("删除成功"); |
| | | } |
| | | } |