Small fixes.

This commit is contained in:
James Cole
2019-01-03 19:01:32 +01:00
parent 577f024310
commit b245facdfe
2 changed files with 3 additions and 3 deletions

View File

@@ -187,7 +187,7 @@ class CategoryController extends Controller
$spentArray = $repository->spentInPeriodPerCurrency(new Collection([$category]), $accounts, $start, $end);
foreach ($spentArray as $currencyId => $spent) {
if (bccomp($spent, '0') === -1) {
$currencies[$currencyId] = $currencies[$currencyId] ?? $currencyRepository->findNull($currencyId);
$currencies[$currencyId] = $currencies[$currencyId] ?? $currencyRepository->findNull((int)$currencyId);
$tempData[] = [
'name' => $category->name,
'spent' => bcmul($spent, '-1'),