diff --git a/app/Helpers/Csv/Converter/AmountComma.php b/app/Helpers/Csv/Converter/AmountComma.php index ca3937e074..37b4d95841 100644 --- a/app/Helpers/Csv/Converter/AmountComma.php +++ b/app/Helpers/Csv/Converter/AmountComma.php @@ -17,7 +17,7 @@ class AmountComma extends BasicConverter implements ConverterInterface */ public function convert() { - $value = str_replace(',', '.', str_val($this->value)); + $value = str_replace(',', '.', strval($this->value)); if (is_numeric($value)) { return strval($value); diff --git a/app/Helpers/Csv/Specifix/AbnAmroDescription.php b/app/Helpers/Csv/Specifix/AbnAmroDescription.php index 54d7c80d85..0cc6f1f079 100644 --- a/app/Helpers/Csv/Specifix/AbnAmroDescription.php +++ b/app/Helpers/Csv/Specifix/AbnAmroDescription.php @@ -95,8 +95,12 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface // description and opposing account will be the same. $this->data['opposing-account-name'] = $matches[4]; - $this->data['description'] = $matches[4]; - + + if( $matches[1] == 'GEA' ) { + $this->data['description'] = 'GEA ' . $matches[4]; + } else { + $this->data['description'] = $matches[4]; + } return true; }