]> wagnertech.de Git - mfinanz.git/blobdiff - SL/SEPA/XML.pm
SEPA-Export ISO20022 konforme Feldinhalte
[mfinanz.git] / SL / SEPA / XML.pm
index 3aa88b7b0cc96970a0bcc19e5ea09c00068263c6..e4bf360d676102af6a08826cd8518b9341a70b91 100644 (file)
@@ -72,6 +72,10 @@ sub _replace_special_chars {
 
   map { $text =~ s/$_/$special_chars{$_}/g; } keys %special_chars;
 
+  # for all other non ascii chars 'OLÉ S.L.' and 'Årdberg AB'!
+  use Text::Unidecode qw(unidecode);
+  $text = unidecode($text);
+
   return $text;
 }