🤖 Auto commit for release 'develop' on 2025-08-10

This commit is contained in:
JC5
2025-08-10 07:02:41 +02:00
parent 645e9ba1f7
commit 152301f9ee
3 changed files with 85 additions and 81 deletions

View File

@@ -119,7 +119,7 @@ class ShowController extends Controller
$firstTransaction = $this->repository->oldestJournalDate($account) ?? $start;
// go back max 3 years.
$threeYearsAgo = $start->subYears(3);
$threeYearsAgo = $start->subYears(3);
$firstTransaction = $firstTransaction->lt($threeYearsAgo) ? $threeYearsAgo : $firstTransaction;
Log::debug('Start period overview');