]> wagnertech.de Git - mfinanz.git/blobdiff - SL/Locale.pm
CSV-Export mit UTF-8 als Encoding gefixt
[mfinanz.git] / SL / Locale.pm
index 4fde61654352b5027afef659713c26ef82c2b8b0..b1c8205e8cd1aaae80b6715e76f11eafb7ded05e 100644 (file)
@@ -480,4 +480,19 @@ sub with_raw_io {
   $self->{raw_io_active} = 0;
 }
 
+sub set_numberformat_wo_thousands_separator {
+  my $self     = shift;
+  my $myconfig = shift || \%::myconfig;
+
+  $self->{saved_numberformat} = $myconfig->{numberformat};
+  $myconfig->{numberformat}   =~ s/^1[,\.]/1/;
+}
+
+sub restore_numberformat {
+  my $self     = shift;
+  my $myconfig = shift || \%::myconfig;
+
+  $myconfig->{numberformat} = $self->{saved_numberformat} if $self->{saved_numberformat};
+}
+
 1;