From bd5d73d1e6693fbb67dc83837370219337ed9204 Mon Sep 17 00:00:00 2001 From: Robert Horlings Date: Mon, 18 Jan 2016 12:37:06 +0100 Subject: [PATCH] Removed transaction type from the description --- app/Helpers/Csv/Specifix/AbnAmroDescription.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/app/Helpers/Csv/Specifix/AbnAmroDescription.php b/app/Helpers/Csv/Specifix/AbnAmroDescription.php index 6e6dc4f02a..75d708e39e 100644 --- a/app/Helpers/Csv/Specifix/AbnAmroDescription.php +++ b/app/Helpers/Csv/Specifix/AbnAmroDescription.php @@ -87,10 +87,6 @@ class AbnAmroDescription } } - // Add the type to the description - if( $type ) - $this->data['description'] .= ' (' . $type . ')'; - return true; } @@ -129,10 +125,6 @@ class AbnAmroDescription } } - // Add the type to the description - if( $type ) - $this->data['description'] .= ' (' . $type . ')'; - return true; } @@ -150,7 +142,7 @@ class AbnAmroDescription Log::debug('AbnAmroSpecifix: Description is structured as GEA or BEA format.'); $this->data[ "opposing-account-name" ] = $matches[4]; - $this->data[ "description" ] = $matches[4] . " (" . $matches[1] . ")"; + $this->data[ "description" ] = $matches[4]; return true; }