From: Bernd Bleßmann Date: Fri, 10 Sep 2021 13:05:53 +0000 (+0200) Subject: PPI: Offenbar typo in Fehlermeldungstext X-Git-Tag: kivitendo-mebil_0.1-0~10^2~2^2~361 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=fa20286418007cfc27557498603adb4e9f31cebf;p=kivitendo-erp.git PPI: Offenbar typo in Fehlermeldungstext kam mit "Auch escapte DTVF Namen erkennen" rein. --- diff --git a/SL/Controller/PayPostingImport.pm b/SL/Controller/PayPostingImport.pm index 5b49a6cb7..6d9fd2ac4 100644 --- a/SL/Controller/PayPostingImport.pm +++ b/SL/Controller/PayPostingImport.pm @@ -28,7 +28,7 @@ sub action_import_datev_pay_postings { my $filename= $::form->{ATTACHMENTS}{file}{filename}; # check name and first fields of CSV data die t8("Wrong file name, expects name like: DTVF_*_LOHNBUCHUNG*.csv") unless $filename =~ /^DTVF_.*_LOHNBUCHUNGEN_LUG.*\.csv$/; - die t8("not a valid DTVF file, expected first field in A1 'DTVF': ") unless ($::form->{file} =~ m/^('|")?DTVF/); + die t8("not a valid DTVF file, expected first field in A1 'DTVF'") unless ($::form->{file} =~ m/^('|")?DTVF/); die t8("not a valid DTVF file, expected field header start with 'Umsatz; (..) ;Konto;Gegenkonto'") unless ($::form->{file} =~ m/Umsatz;S\/H;;;;;Konto;Gegenkonto.*;;Belegdatum;Belegfeld 1;Belegfeld 2;;Buchungstext/);