This commit is contained in:
akulikov 2024-12-04 10:59:49 +03:00
parent a42303ec45
commit 8d0985d547
2 changed files with 2 additions and 1 deletions

View file

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

View file

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