Fixing a bug with expense account being set to unknown

This commit is contained in:
Robert Horlings 2016-01-18 09:09:30 +01:00
parent 4909fcc8b4
commit cbe1f762ca

View File

@ -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;