Revision d6176e1f
Von Bernd Bleßmann vor fast 2 Jahren hinzugefügt
SL/Controller/CsvImport/Base.pm | ||
---|---|---|
64 | 64 |
$self->controller->info_headers({ used => { }, headers => [ ] }); |
65 | 65 |
|
66 | 66 |
my $objects = $self->csv->get_objects; |
67 |
if ($self->csv->errors) { |
|
68 |
$self->controller->errors([ $self->csv->errors ]) ; |
|
69 |
return; |
|
70 |
} |
|
67 | 71 |
|
68 | 72 |
$self->controller->track_progress(progress => 70); |
69 | 73 |
|
SL/Controller/CsvImport/BaseMulti.pm | ||
---|---|---|
71 | 71 |
$self->controller->info_headers($info_headers); |
72 | 72 |
|
73 | 73 |
my $objects = $self->csv->get_objects; |
74 |
if ($self->csv->errors) { |
|
75 |
$self->controller->errors([ $self->csv->errors ]) ; |
|
76 |
return; |
|
77 |
} |
|
74 | 78 |
|
75 | 79 |
$self->controller->track_progress(progress => 70); |
76 | 80 |
|
Auch abrufbar als: Unified diff
CsvImport: Fehler beim Erstellen der Objekte an Oberfläche anzeigen