MySQL 5.7 compatible query fixing. [skip ci]

This commit is contained in:
James Cole
2016-09-16 11:04:24 +02:00
parent 0ea14eb987
commit 50a3279b30

View File

@@ -259,6 +259,7 @@ class BudgetRepository implements BudgetRepositoryInterface
$join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', '0'); $join->on('source.transaction_journal_id', '=', 'transaction_journals.id')->where('source.amount', '<', '0');
} }
) )
->groupBy(['source.account_id'])
->whereIn('budget_transaction.budget_id', $budgets->pluck('id')->toArray()); ->whereIn('budget_transaction.budget_id', $budgets->pluck('id')->toArray());
if (count($accountIds) > 0) { if (count($accountIds) > 0) {
@@ -325,6 +326,7 @@ class BudgetRepository implements BudgetRepositoryInterface
return true; return true;
} }
} }
return false; return false;
} }
); );