Some code cleanup.

This commit is contained in:
James Cole 2016-11-26 09:01:00 +01:00
parent 1453a78e49
commit 8c9f90f1b4
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
6 changed files with 15 additions and 17 deletions

View File

@ -220,8 +220,7 @@ class AccountController extends Controller
}
/**
* @param AccountTaskerInterface $tasker
* @param ARI $repository
* @param JournalCollectorInterface $collector
* @param Account $account
*
* @return View

View File

@ -204,7 +204,7 @@ class BudgetController extends Controller
$cache->addProperty('budget');
$cache->addProperty('period');
if ($cache->has()) {
// return Response::json($cache->get());
return Response::json($cache->get());
}
// the expenses:

View File

@ -292,7 +292,6 @@ class CategoryReportController extends Controller
$currentEnd = clone $currentStart;
Log::debug(sprintf('Function is %s', $function));
$currentEnd = $currentEnd->$function();
//$currentEnd = Navigation::endOfPeriod($current, $period);
$expenses = $this->groupByCategory($this->getExpenses($accounts, $categories, $currentStart, $currentEnd));
$income = $this->groupByCategory($this->getIncome($accounts, $categories, $currentStart, $currentEnd));
$label = $currentStart->formatLocalized(strval(trans('config.' . $format)));
@ -314,7 +313,7 @@ class CategoryReportController extends Controller
}
$currentStart = clone $currentEnd;
$currentStart->addDay();// = Navigation::addPeriod($current, $period, 0);
$currentStart->addDay();
}
$data = $this->generator->mainReportChart($data);

View File

@ -168,7 +168,6 @@ class ConvertController extends Controller
$sourceAccount = TransactionJournal::sourceAccountList($journal)->first();
$destinationAccount = TransactionJournal::destinationAccountList($journal)->first();
$sourceType = $journal->transactionType;
$destination = null;
$joined = $sourceType->type . '-' . $destinationType->type;
switch ($joined) {
default:

View File

@ -135,13 +135,14 @@ class Range
$start = Session::get('start');
/** @var Carbon $end */
$end = Session::get('end');
if ($viewRange === 'custom') {
$days = $start->diffInDays($end);
$prevStart = clone $start;
$prevStart->subDays($days);
$prevEnd = clone $start;
$nextStart = clone $end;
$nextEnd = clone $end;
if ($viewRange === 'custom') {
$days = $start->diffInDays($end);
$prevStart->subDays($days);
$nextEnd->addDays($days);
unset($days);
}

View File

@ -374,12 +374,12 @@ Route::group(
'/reports/data/inc-exp-report/{start_date}/{end_date}/{accountList}',
['uses' => 'Report\InOutController@incExpReport', 'as' => 'reports.data.incExpReport']
);
// (income report):
// income report:
Route::get(
'/reports/data/income-report/{start_date}/{end_date}/{accountList}',
['uses' => 'Report\InOutController@incomeReport', 'as' => 'reports.data.incomeReport']
);
// (expense report):
// expense report:
Route::get(
'/reports/data/expense-report/{start_date}/{end_date}/{accountList}',
['uses' => 'Report\InOutController@expenseReport', 'as' => 'reports.data.expenseReport']