Display only relevant data in the budget graph

This commit is contained in:
Frederic Guillot 2015-03-28 15:44:24 -04:00
parent 346309cfcf
commit eb6853c163
1 changed files with 12 additions and 8 deletions

View File

@ -111,15 +111,19 @@ class Budget extends Base
$date = $today->format('Y-m-d');
$today_in = isset($in[$date]) ? (int) $in[$date] : 0;
$today_out = isset($out[$date]) ? (int) $out[$date] : 0;
$left += $today_in;
$left -= $today_out;
$serie[] = array(
'date' => $date,
'in' => $today_in,
'out' => -$today_out,
'left' => $left,
);
if ($today_in > 0 || $today_out > 0) {
$left += $today_in;
$left -= $today_out;
$serie[] = array(
'date' => $date,
'in' => $today_in,
'out' => -$today_out,
'left' => $left,
);
}
}
return $serie;