This commit is contained in:
parent
356dbeb7cb
commit
08cfe0485c
1 changed files with 2 additions and 1 deletions
|
|
@ -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()));
|
||||
finalPredicate = pb.and(finalPredicate, pb.equals("currency", currency));
|
||||
account = accountImdg.getFirstObjectByPredicate(finalPredicate);
|
||||
}
|
||||
if (account != null) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue