X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDATEV.pm;h=9418c483970ab13993bffb6b9a633766ed17c059;hb=b2bedb6b5eff41a17ddb194df1c75213b841f3bb;hp=61e4d80dd47382189a7877346e76bd809e4ffe41;hpb=1cbc459da604c31d21593df298a522e6cbe69e2b;p=kivitendo-erp.git diff --git a/SL/DATEV.pm b/SL/DATEV.pm index 61e4d80dd..9418c4839 100644 --- a/SL/DATEV.pm +++ b/SL/DATEV.pm @@ -215,6 +215,16 @@ sub trans_id { return $self->{trans_id}; } +sub warnings { + my $self = shift; + + if (@_) { + $self->{warnings} = [@_]; + } else { + return $self->{warnings}; + } +} + sub accnofrom { my $self = shift; @@ -1365,6 +1375,7 @@ sub csv_buchungsexport { push @array_of_datev, \@csv_headers; push @array_of_datev, [ map { $_->{csv_header_name} } @csv_columns ]; + my @warnings; foreach my $row ( @datev_lines ) { my @current_datev_row; @@ -1389,15 +1400,17 @@ sub csv_buchungsexport { die "Incorrect lenght of field" if length($row->{ $column->{kivi_datev_name} }) > $column->{max_length}; } if (exists $column->{valid_check} && $column->{kivi_datev_name} ne 'not yet implemented') { - # more checks - die "Not a valid value: '$row->{ $column->{kivi_datev_name} }'" . - " for '$column->{kivi_datev_name}' with amount '$row->{umsatz}'" - unless ($column->{valid_check}->($row->{ $column->{kivi_datev_name} })); + # more checks, listed as user warnings + push @warnings, t8("Wrong field value '#1' for field '#2' for the transaction" . + " with amount '#3'",$row->{ $column->{kivi_datev_name} }, + $column->{kivi_datev_name},$row->{umsatz}) + unless ($column->{valid_check}->($row->{ $column->{kivi_datev_name} })); } push @current_datev_row, $row->{ $column->{kivi_datev_name} }; } push @array_of_datev, \@current_datev_row; } + $self->warnings(@warnings) if @warnings; return \@array_of_datev; }