mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #9807
This commit is contained in:
parent
63c17f99b2
commit
0014bffeb8
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user