Small bug fix in the import routine.

This commit is contained in:
James Cole
2014-09-11 22:29:49 +02:00
parent 87044e6b8e
commit c140f71878

View File

@@ -310,16 +310,19 @@ class Import
if (is_null($account)) { if (is_null($account)) {
\Log::debug('Cash account is needed.'); \Log::debug('Cash account is needed.');
$account = $this->_accounts->getCashAccount(); $account = $this->_accounts->getCashAccount();
\Log::info($account);
} }
// find
foreach ($journal->transactions as $transaction) { 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->account()->associate($account);
$transaction->save(); $transaction->save();
\Log::debug( \Log::debug(
'Updated transactions (#' . $journal->id . '), #' . $transaction->id . '\'s Account.' 'Updated transactions (#' . $journal->id . '), #' . $transaction->id . '\'s Account.'
); );
} else {
\Log::error('Found account type: "' . $accountType.'" instead of expected "Import account"');
} }
} }