mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Fix account_id key.
This commit is contained in:
@@ -202,7 +202,7 @@ class IndexController extends Controller
|
|||||||
// loop all accounts in this piggy bank subtract the current amount from "left to save" in the $accounts array.
|
// loop all accounts in this piggy bank subtract the current amount from "left to save" in the $accounts array.
|
||||||
/** @var array $piggyAccount */
|
/** @var array $piggyAccount */
|
||||||
foreach ($piggyBank['accounts'] as $piggyAccount) {
|
foreach ($piggyBank['accounts'] as $piggyAccount) {
|
||||||
$accountId = $piggyAccount['id'];
|
$accountId = $piggyAccount['account_id'];
|
||||||
if (array_key_exists($accountId, $accounts)) {
|
if (array_key_exists($accountId, $accounts)) {
|
||||||
$accounts[$accountId]['left'] = bcsub((string) $accounts[$accountId]['left'], (string) $piggyAccount['current_amount']);
|
$accounts[$accountId]['left'] = bcsub((string) $accounts[$accountId]['left'], (string) $piggyAccount['current_amount']);
|
||||||
$accounts[$accountId]['saved'] = bcadd((string) $accounts[$accountId]['saved'], (string) $piggyAccount['current_amount']);
|
$accounts[$accountId]['saved'] = bcadd((string) $accounts[$accountId]['saved'], (string) $piggyAccount['current_amount']);
|
||||||
|
Reference in New Issue
Block a user