Revision d6176e1f
Von Bernd Bleßmann vor etwa 2 Jahren hinzugefügt
SL/Controller/CsvImport/Base.pm | ||
---|---|---|
$self->controller->info_headers({ used => { }, headers => [ ] });
|
||
|
||
my $objects = $self->csv->get_objects;
|
||
if ($self->csv->errors) {
|
||
$self->controller->errors([ $self->csv->errors ]) ;
|
||
return;
|
||
}
|
||
|
||
$self->controller->track_progress(progress => 70);
|
||
|
SL/Controller/CsvImport/BaseMulti.pm | ||
---|---|---|
$self->controller->info_headers($info_headers);
|
||
|
||
my $objects = $self->csv->get_objects;
|
||
if ($self->csv->errors) {
|
||
$self->controller->errors([ $self->csv->errors ]) ;
|
||
return;
|
||
}
|
||
|
||
$self->controller->track_progress(progress => 70);
|
||
|
Auch abrufbar als: Unified diff
CsvImport: Fehler beim Erstellen der Objekte an Oberfläche anzeigen