From e6622754001e3c80757bb9f8af1dcd468003e524 Mon Sep 17 00:00:00 2001 From: Nicky De Maeyer Date: Mon, 6 Oct 2025 22:41:29 +0200 Subject: [PATCH] use the start and end date to enrich the accounts --- .../Controllers/Models/TransactionCurrency/ListController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Api/V1/Controllers/Models/TransactionCurrency/ListController.php b/app/Api/V1/Controllers/Models/TransactionCurrency/ListController.php index 67a6486487..3467046482 100644 --- a/app/Api/V1/Controllers/Models/TransactionCurrency/ListController.php +++ b/app/Api/V1/Controllers/Models/TransactionCurrency/ListController.php @@ -108,6 +108,8 @@ class ListController extends Controller $admin = auth()->user(); $enrichment = new AccountEnrichment(); $enrichment->setDate($this->parameters->get('date')); + $enrichment->setStart($this->parameters->get('start')); + $enrichment->setEnd($this->parameters->get('end')); $enrichment->setUser($admin); $accounts = $enrichment->enrich($accounts);