Revision 3800c37e
Von Moritz Bunkus vor fast 7 Jahren hinzugefügt
SL/DATEV/CSV.pm | ||
---|---|---|
231 | 231 |
input_check => sub { |
232 | 232 |
my ($ustid) = @_; |
233 | 233 |
return 1 if ('' eq $ustid); |
234 |
$ustid =~ s{[\s.]+}{}g;
|
|
234 |
$ustid =~ s{\s+}{}g;
|
|
235 | 235 |
return ($ustid =~ m/^CH|^[A-Z]{2}\w{5,13}$/); |
236 | 236 |
}, |
237 |
formatter => sub { my ($input) = @_; $input =~ s/[\s.]+//g; return $input },
|
|
237 |
formatter => sub { my ($input) = @_; $input =~ s/\s//g; return $input },
|
|
238 | 238 |
valid_check => sub { |
239 | 239 |
my ($ustid) = @_; |
240 | 240 |
return 1 if ('' eq $ustid); |
Auch abrufbar als: Unified diff
Revert "DATEV: auch Punkte in UStID-Nummern automatisch entfernen"
This reverts commit 93f06915a1f2444585aeb8ed32f849d08da7b07a.