mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00:00
Fix #9807
This commit is contained in:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user