|
|
@ -499,7 +499,7 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public void closedV2(ProjectClosedFromDTO fromDTO) { |
|
|
|
//公开回复内容审核
|
|
|
|
//公开回复内容审核
|
|
|
|
if (StringUtils.isNotBlank(fromDTO.getPublicReply())) { |
|
|
|
TextScanParamDTO textScanParamDTO = new TextScanParamDTO(); |
|
|
|
TextTaskDTO taskDTO = new TextTaskDTO(); |
|
|
@ -1561,8 +1561,19 @@ public class ProjectServiceImpl extends BaseServiceImpl<ProjectDao, ProjectEntit |
|
|
|
return projects; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void saveFile(List<FileDTO> publicFile, List<FileDTO> internalFile, String customerId, String projectId, String processId) { |
|
|
|
/** |
|
|
|
* 项目处理节点附件保存 |
|
|
|
* @author zhaoqifeng |
|
|
|
* @date 2020/12/22 9:18 |
|
|
|
* @param publicFile |
|
|
|
* @param internalFile |
|
|
|
* @param customerId |
|
|
|
* @param projectId |
|
|
|
* @param processId |
|
|
|
* @return void |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public void saveFile(List<FileDTO> publicFile, List<FileDTO> internalFile, String customerId, String projectId, String processId) { |
|
|
|
if (CollectionUtils.isNotEmpty(internalFile)) { |
|
|
|
int i = 0; |
|
|
|
List<ProjectProcessAttachmentEntity> list = new ArrayList<>(); |
|
|
|