Differ between shared and normal transactions (not build yet).

This commit is contained in:
James Cole
2015-05-16 07:49:02 +02:00
parent 06b747c221
commit ae54497efa
3 changed files with 16 additions and 6 deletions

View File

@@ -126,7 +126,7 @@ class GoogleChartController extends Controller
while ($start <= $end) {
$row = [clone $start];
foreach ($budgets as $budget) {
$spent = $repository->spentInMonth($budget, $start);
$spent = $repository->spentInMonth($budget, $start, $shared);
$row[] = $spent;
}
$chart->addRowArray($row);