X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FCsvImportProfile.pm;h=b816bedb80fedd0f0a643b4517c1a89b7e09af38;hb=37d14c11afd10049be58467770499b25268c1364;hp=c03e9f3dae488fc0ee3df158c2b53612a723a497;hpb=da6a187ab3fc3cbb97e094559dc964a9809f347b;p=kivitendo-erp.git 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; }