X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FHelper%2FCsv%2FDispatcher.pm;h=801e8229f2bfb2d997376bde3c7383306119c4d8;hb=211f4e60ebc94a7fd73564ca750f7f52f416773f;hp=a0f59fc81bc630368b57dc20cbfbf6da87e16a29;hpb=a0d9f09a2e63f0be9eda333ab7fa78679ea55759;p=kivitendo-erp.git diff --git a/SL/Helper/Csv/Dispatcher.pm b/SL/Helper/Csv/Dispatcher.pm index a0f59fc81..801e8229f 100644 --- a/SL/Helper/Csv/Dispatcher.pm +++ b/SL/Helper/Csv/Dispatcher.pm @@ -99,8 +99,8 @@ sub apply { } sub is_known { - my ($self, $col) = @_; - return grep { $col eq $_->{key} } $self->_specs; + my ($self, $col, $row) = @_; + return grep { $col eq $_->{key} } @{ $self->_specs->[$row // 0] }; } sub parse_profile { @@ -130,7 +130,7 @@ sub parse_profile { sub _parse_profile { my ($self, %params) = @_; - my $profile = $params{profile}; + my $profile = $params{profile} // {}; my $class = $params{class}; my $header = $params{header}; my $mapping = $params{mapping}; @@ -141,7 +141,7 @@ sub _parse_profile { next unless $col; if (exists $mapping->{$col} && $profile->{$mapping->{$col}}) { push @specs, $self->make_spec($col, $profile->{$mapping->{$col}}, $class); - } elsif (exists $mapping->{$col}) { + } elsif (exists $mapping->{$col} && !%{ $profile }) { push @specs, $self->make_spec($col, $mapping->{$col}, $class); } elsif (exists $profile->{$col}) { push @specs, $self->make_spec($col, $profile->{$col}, $class);