mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Renamed the other method.
This commit is contained in:
		| @@ -213,7 +213,7 @@ class BalanceReportHelper implements BalanceReportHelperInterface | ||||
|         $empty = new BalanceLine; | ||||
|  | ||||
|         foreach ($accounts as $account) { | ||||
|             $spent = $this->budgetRepository->spentInPeriodWithoutBudget(new Collection([$account]), $start, $end); | ||||
|             $spent = $this->budgetRepository->spentInPeriodWoBudget(new Collection([$account]), $start, $end); | ||||
|             // budget | ||||
|             $budgetEntry = new BalanceEntry; | ||||
|             $budgetEntry->setAccount($account); | ||||
|   | ||||
| @@ -80,7 +80,7 @@ class BudgetReportHelper implements BudgetReportHelperInterface | ||||
|  | ||||
|             } | ||||
|         } | ||||
|         $noBudget   = $this->repository->spentInPeriodWithoutBudget($accounts, $start, $end); // stuff outside of budgets | ||||
|         $noBudget   = $this->repository->spentInPeriodWoBudget($accounts, $start, $end); // stuff outside of budgets | ||||
|         $budgetLine = new BudgetLine; | ||||
|         $budgetLine->setOverspent($noBudget)->setSpent($noBudget); | ||||
|         $object->addOverspent($noBudget)->addBudgetLine($budgetLine); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user