X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/da6a187ab3fc3cbb97e094559dc964a9809f347b..2144dd8e1a7ed9da5f164d87165d3dce01b8f53b:/SL/DB/CsvImportProfile.pm diff --git a/SL/DB/CsvImportProfile.pm b/SL/DB/CsvImportProfile.pm index c03e9f3da..b816bedb8 100644 --- a/SL/DB/CsvImportProfile.pm +++ b/SL/DB/CsvImportProfile.pm @@ -38,6 +38,7 @@ sub set_defaults { escape_char => '"', charset => 'CP850', numberformat => $::myconfig{numberformat}, + dateformat => $::myconfig{dateformat}, duplicates => 'no_check', ); @@ -83,8 +84,8 @@ sub clone_and_reset_deep { my $clone = $self->clone_and_reset; $clone->settings(map { $_->clone_and_reset } $self->settings); + $clone->is_default(0); $clone->name(''); - return $clone; }