This commit is contained in:
James Cole
2016-01-30 09:41:48 +01:00
parent 9aa89393c0
commit a818ab0942

View File

@@ -78,7 +78,7 @@ class BudgetReportHelper implements BudgetReportHelperInterface
$overspent = bccomp(bcadd($repetition->amount, $expenses), '0') === 1 ? '0' : bcadd($expenses, $repetition->amount);
$budgetLine->setLeft($left);
$budgetLine->setSpent($spent);
$budgetLine->setSpent($expenses);
$budgetLine->setOverspent($overspent);
$budgetLine->setBudgeted($repetition->amount);