|
@@ -166,6 +166,9 @@ public class EmailParseService {
|
|
|
// 保存邮件文件表
|
|
|
EmailContentInfoDTO emailContentInfoDTO = fileNameNavEntry.getKey();
|
|
|
String fileName = emailContentInfoDTO.getFileName();
|
|
|
+ if (Objects.equals(EmailTypeConst.REPORT_EMAIL_TYPE, emailType) && fileName.endsWith(".html")) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Integer fileId = saveEmailFileInfo(emailId, emailContentInfoDTO.getFileId(), fileName, emailContentInfoDTO.getFilePath(), parseDate);
|
|
|
|
|
|
List<EmailFundNavDTO> fundNavDTOList = fileNameNavEntry.getValue();
|