This commit is contained in:
Azeez Muibi
2025-04-29 09:30:54 +01:00
parent a27f4333f3
commit 34884a5154
+2
View File
@@ -30,6 +30,7 @@ class TransactionService:
# Extract filters
account_id = filters.get('account_id')
transaction_id = filters.get('transaction_id')
transaction_type = filters.get('type')
channel = filters.get('channel')
start_date = filters.get('start_date')
@@ -54,6 +55,7 @@ class TransactionService:
# Get transactions with optional filters and pagination
transactions, total_count = Transaction.get_all_transactions(
account_id=account_id,
transaction_id=transaction_id,
transaction_type=transaction_type,
channel=channel,
start_date=start_date,