Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
ialbert 2024-10-18 16:05:00 +03:00
commit cf317b252b
2 changed files with 2 additions and 4 deletions

View file

@ -81,10 +81,7 @@ public class KSRepLccTradesReportBuilder extends CSVReportBuilder<EmptyParams, K
LocalDate now = LocalDate.now();
ImdgPredicateBuilder pb = executionCurrencyImdg.predicateBuilder();
Collection<ExecutionCurrency> executions = executionCurrencyImdg.getCollectionObjectsByPredicate(
pb.or(
pb.equals("tradingDate", now),
pb.equals("settlementDate", now)
)
pb.equals("tradingDate", now)
);
rows = new ArrayList<>(executions.size());

View file

@ -1396,6 +1396,7 @@ public class ReportServiceTest_KS {
ExecutionCurrency executionCurrency_2 = new ExecutionCurrency();
executionCurrency_2.setSessionId(session_2.getId());
executionCurrency_2.setTradingDate(LocalDate.now());
executionCurrency_2.setSettlementDate(LocalDate.now());
executionCurrency_2.setSessionId(SESSION_ID_2);
executionCurrency_2.setExchangeExecutionId(123L);