создание PaymentInstruction при обработке сделок для итоговой сессии МКР создание SDF03 фикс
This commit is contained in:
parent
9d2be448ee
commit
29ecf18e2e
1 changed files with 2 additions and 1 deletions
|
|
@ -176,7 +176,8 @@ public class FormingPaymentInstructionDealsFinalMkr implements ISessionStage {
|
|||
List<SDf03> sDf03Created = new ArrayList<>();
|
||||
for (PaymentInstruction paymentInstruction : formedPaymentInstructions) {
|
||||
Account account = accountImdg.getSingleObjectByID(paymentInstruction.getCreditLeg_accountId());
|
||||
if (List.of(AccountType.Corr, AccountType.Clrn).contains(IEnumKey.getEnumByKey(AccountType.class, account.getAccountType()))) {
|
||||
if (List.of(AccountType.Corr, AccountType.Clrn, AccountType.Tran, AccountType.Anlt)
|
||||
.contains(IEnumKey.getEnumByKey(AccountType.class, account.getAccountType()))) {
|
||||
sDf03Created.add(newSDf03(paymentInstruction));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue