|
@@ -282,6 +282,10 @@ public class ArchiveAutoPdfServiceImpl implements IArchiveAutoPdfService {
|
|
ArchiveProjectConfig config = archiveProjectConfigService.getByProjectIdOrNew(projectId);
|
|
ArchiveProjectConfig config = archiveProjectConfigService.getByProjectIdOrNew(projectId);
|
|
//是否打页码
|
|
//是否打页码
|
|
if (!config.isPage()) {
|
|
if (!config.isPage()) {
|
|
|
|
+ //不需要打页码的,把字段pdf_page_url设为null
|
|
|
|
+ for(ArchiveFile file:waitArchiveFiles){
|
|
|
|
+ file.setPdfPageUrl("");
|
|
|
|
+ }
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|