mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Small bug fix in the import routine.
This commit is contained in:
parent
87044e6b8e
commit
c140f71878
@ -310,16 +310,19 @@ class Import
|
||||
if (is_null($account)) {
|
||||
\Log::debug('Cash account is needed.');
|
||||
$account = $this->_accounts->getCashAccount();
|
||||
\Log::info($account);
|
||||
}
|
||||
// find
|
||||
|
||||
foreach ($journal->transactions as $transaction) {
|
||||
if ($transaction->account()->first()->account_type_id == 5) {
|
||||
$accountType = $transaction->account->accounttype->type;
|
||||
if ($accountType == 'Import account') {
|
||||
$transaction->account()->associate($account);
|
||||
$transaction->save();
|
||||
\Log::debug(
|
||||
'Updated transactions (#' . $journal->id . '), #' . $transaction->id . '\'s Account.'
|
||||
);
|
||||
} else {
|
||||
\Log::error('Found account type: "' . $accountType.'" instead of expected "Import account"');
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user