From 1542d5e386babe6674da2d5fbe3a0d120a83e428 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 5 Feb 2016 21:12:19 +0100 Subject: [PATCH] Include IBAN --- app/Export/Entry.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Export/Entry.php b/app/Export/Entry.php index da30ec8444..c84fb91280 100644 --- a/app/Export/Entry.php +++ b/app/Export/Entry.php @@ -105,12 +105,14 @@ class Entry $sourceAccount = $journal->source_account; $entry->setFromAccountId($sourceAccount->id); $entry->setFromAccountName($sourceAccount->name); + $entry->setFromAccountIban($sourceAccount->iban); $entry->setFromAccountType($sourceAccount->accountType->type); /** @var Account $destination */ $destination = $journal->destination_account; $entry->setToAccountId($destination->id); $entry->setToAccountName($destination->name); + $entry->setToAccountIban($destination->iban); $entry->setToAccountType($destination->accountType->type); return $entry;