gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: fix DB query


From: gnunet
Subject: [libeufin] branch master updated: fix DB query
Date: Tue, 31 Aug 2021 22:05:37 +0200

This is an automated email from the git hooks/post-receive script.

ms pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 79a47cc  fix DB query
79a47cc is described below

commit 79a47cc7a849fff8acb2551ee5303eac7fa720a9
Author: MS <ms@taler.net>
AuthorDate: Tue Aug 31 09:05:33 2021 -1100

    fix DB query
---
 .../src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt    | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt 
b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
index 8505e0a..ac3a388 100644
--- a/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
+++ b/sandbox/src/main/kotlin/tech/libeufin/sandbox/EbicsProtocolBackend.kt
@@ -483,7 +483,10 @@ private fun constructCamtResponse(
      */
     if (dateRange != null) {
         BankAccountStatementEntity.find {
-            BankAccountStatementsTable.creationTime.between(dateRange.first, 
dateRange.second)
+            BankAccountStatementsTable.creationTime.between(
+                dateRange.first,
+                dateRange.second) and(
+                    BankAccountStatementsTable.bankAccount eq bankAccount.id)
         }.forEach { ret.add(it.xmlMessage) }
     } else {
         /**

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]