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

This commit is contained in:
ialbert 2024-10-09 14:00:34 +03:00
commit 15f24ad82b

View file

@ -167,13 +167,14 @@ public class KSRepLccTradesReportBuilder extends CSVReportBuilder<EmptyParams, K
if (account != null) {
AccountType accountType = IEnumKey.getEnumByKey(AccountType.class, account.getAccountType());
if (accountType == AccountType.Info) {
String currency = account.getCurrency();
pb = accountImdg.predicateBuilder();
ImdgPredicate finalPredicate = pb.and(
pb.equals("accountType", AccountType.Anlt.getKey()),
pb.equals("companyId", 5L)
);
if (execution.getSecuritySymbol() != null)
finalPredicate = pb.and(finalPredicate, pb.equals("currency", execution.getSecuritySymbol()));
if (currency != null)
finalPredicate = pb.and(finalPredicate, pb.equals("currency", currency));
account = accountImdg.getFirstObjectByPredicate(finalPredicate);
}
if (account != null) {