etreschenkov 2024-10-07 13:18:45 +03:00
parent 0a7ba03f56
commit 1229a2e783
2 changed files with 2 additions and 1 deletions

View file

@ -334,7 +334,7 @@ public class ReportService extends QueueConsumerV2 implements InitializingBean {
Map<File, ReportInfo> outFiles = createReportsForTask(List.of(), reportBuildersForGREC.values()); Map<File, ReportInfo> outFiles = createReportsForTask(List.of(), reportBuildersForGREC.values());
sendReportsToGateway(List.of(), outFiles, ReportType.REPORT_KS_FINAL.getKey()); sendReportsToGateway(List.of(), outFiles, ReportType.REPORT_KS_LCC.getKey());
sendFilesToSftp(outFiles.keySet()); sendFilesToSftp(outFiles.keySet());
} catch (Exception e) { } catch (Exception e) {
log.error("Unexpected exception", e); log.error("Unexpected exception", e);

View file

@ -11,6 +11,7 @@ public enum ReportType implements IEnumKey {
PFX65("PFX65"), PFX65("PFX65"),
REPORT_KS_TMP("REPORT_KS_TMP"), REPORT_KS_TMP("REPORT_KS_TMP"),
REPORT_KS_FINAL("REPORT_KS_FINAL"), REPORT_KS_FINAL("REPORT_KS_FINAL"),
REPORT_KS_LCC("REPORT_KS_LCC"),
; ;