This commit is contained in:
James Cole 2025-02-11 06:06:09 +01:00
parent 63c17f99b2
commit 0014bffeb8
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -202,10 +202,15 @@ class ReconcileController extends Controller
// get the transactions // get the transactions
$selectionStart = clone $start; $selectionStart = clone $start;
$selectionStart->startOfDay();
$selectionStart->subDays(3); $selectionStart->subDays(3);
$selectionEnd = clone $end; $selectionEnd = clone $end;
$selectionEnd->endOfDay();
$selectionEnd->addDays(3); $selectionEnd->addDays(3);
// to make sure the bar is in the right place:
$start->startOfDay();
// grab transactions: // grab transactions:
/** @var GroupCollectorInterface $collector */ /** @var GroupCollectorInterface $collector */
$collector = app(GroupCollectorInterface::class); $collector = app(GroupCollectorInterface::class);