libeufin

Integration and sandbox testing for FinTech APIs and data formats
Log | Files | Refs | Submodules | README | LICENSE

commit bed2845678995fe64ebd4ad98b2b65ab416eec83
parent 67bef53ab7916c39ec524f42d35f2b485f69b649
Author: MS <ms@taler.net>
Date:   Sun, 29 Aug 2021 23:44:51 -1100

note

Diffstat:
Msandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt b/sandbox/src/main/kotlin/tech/libeufin/sandbox/Main.kt @@ -132,12 +132,15 @@ class Camt053Tick : CliktCommand( dbCreateTables(dbConnString) transaction { BankAccountEntity.all().forEach { accountIter-> + /** + * TBD: here the statements for each account need to be generated. + */ val accountRet = mutableListOf<String>() BankAccountFreshTransactionEntity.all().forEach { freshTx -> accountRet.add( "${freshTx.transactionRef.subject}: " + "${freshTx.transactionRef.amount} ${freshTx.transactionRef.currency} " + - "${freshTx.transactionRef.direction}" + freshTx.transactionRef.direction ) } println("Bank account ${accountIter.label} found fresh transactions:")