From 0c75d61840ac5dbf40a8749759866696d5ed2145 Mon Sep 17 00:00:00 2001 From: akulikov Date: Mon, 2 Dec 2024 14:06:02 +0300 Subject: [PATCH] http://jira.mfd.msk:8088/browse/CLS-795 add new ReportKeys --- .../java/ru/spcex/platform/enumeration/ReportBuilderType.java | 3 ++- .../main/java/ru/spcex/platform/enumeration/ReportKeys.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportBuilderType.java b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportBuilderType.java index 180ab1c01..29252d273 100644 --- a/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportBuilderType.java +++ b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportBuilderType.java @@ -20,7 +20,8 @@ public enum ReportBuilderType implements IEnumKey { KS_SESSION_LIST("ks_session_list"), KS_COMMISSION_TRADES("ks_commission_trades"), KS_REP_LCC_TRADES("ks_rep_lcc_trades"), - KS_REP_LCC_NETTO("ks_rep_lcc_netto") + KS_REP_LCC_NETTO("ks_rep_lcc_netto"), + KS_REP_LCC_VALUE("ks_rep_lcc_value"), ; private final String key; diff --git a/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportKeys.java b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportKeys.java index 81eede910..4eefce091 100644 --- a/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportKeys.java +++ b/platform-parent/platform-enum/src/main/java/ru/spcex/platform/enumeration/ReportKeys.java @@ -19,7 +19,8 @@ public enum ReportKeys implements IEnumKey { KS_SESSION_LIST("KS_SESSION_LIST"), KS_COMMISSION_TRADES("KS_COMMISSION_TRADES"), KS_REP_LCC_TRADES_REPORT("KS_REP_LCC_TRADES_REPORT"), - KS_REP_LCC_NETTO_REPORT("KS_REP_LCC_NETTO_REPORT") + KS_REP_LCC_NETTO_REPORT("KS_REP_LCC_NETTO_REPORT"), + KS_REP_LCC_VALUE_REPORT("KS_REP_LCC_VALUE_REPORT"), ; private final String key;