From cbe1f762ca2e9ec88c9ff009595089f2d28a01b9 Mon Sep 17 00:00:00 2001 From: Robert Horlings Date: Mon, 18 Jan 2016 09:09:30 +0100 Subject: [PATCH] Fixing a bug with expense account being set to unknown --- app/Helpers/Csv/Specifix/AbnAmroDescription.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Helpers/Csv/Specifix/AbnAmroDescription.php b/app/Helpers/Csv/Specifix/AbnAmroDescription.php index 6a422a5a24..49295b28e9 100644 --- a/app/Helpers/Csv/Specifix/AbnAmroDescription.php +++ b/app/Helpers/Csv/Specifix/AbnAmroDescription.php @@ -150,6 +150,8 @@ class AbnAmroDescription $this->data[ "opposing-account-name" ] = $matches[4]; $this->data[ "description" ] = $matches[4] . " (" . $matches[1] . ")"; + + return true; } return false; @@ -167,6 +169,8 @@ class AbnAmroDescription $this->data[ "opposing-account-name" ] = "ABN AMRO"; $this->data[ "description" ] = $matches[1]; + + return true; } return false;