diff --git a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchAdmittedLiabilitiesRegisterMapStore.java b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchAdmittedLiabilitiesRegisterMapStore.java index 95d69b972..791357068 100644 --- a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchAdmittedLiabilitiesRegisterMapStore.java +++ b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchAdmittedLiabilitiesRegisterMapStore.java @@ -40,6 +40,6 @@ public class SearchAdmittedLiabilitiesRegisterMapStore extends AbstractSliceMapL @Override public String[] getIndexingField() { - return new String[]{"created"}; + return new String[]{"clearingDate"}; } } diff --git a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchCoveredLiabilitiesRegisterMapStore.java b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchCoveredLiabilitiesRegisterMapStore.java index 7b6c4fcf7..e0b21fbc6 100644 --- a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchCoveredLiabilitiesRegisterMapStore.java +++ b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchCoveredLiabilitiesRegisterMapStore.java @@ -35,11 +35,11 @@ public class SearchCoveredLiabilitiesRegisterMapStore extends AbstractSliceMapLo @Override public String getMapName() { - return IMDGDistributedNames.Map_SearchAdmittedLiabilitiesRegister; + return IMDGDistributedNames.Map_SearchCoveredLiabilitiesRegister; } @Override public String[] getIndexingField() { - return new String[]{"created"}; + return new String[]{"clearingDate"}; } } diff --git a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchMoneyPaymentInstructionRegisterMapStore.java b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchMoneyPaymentInstructionRegisterMapStore.java index 82567a6fd..7c49cde3c 100644 --- a/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchMoneyPaymentInstructionRegisterMapStore.java +++ b/clearing-parent/imdg-hist/src/main/java/ru/spcex/clearing/historyimdg/mapstores/SearchMoneyPaymentInstructionRegisterMapStore.java @@ -39,6 +39,6 @@ public class SearchMoneyPaymentInstructionRegisterMapStore extends AbstractSlice @Override public String[] getIndexingField() { - return new String[]{"created"}; + return new String[]{"clearingDate"}; } }