Einträge mit Fehlern nicht importieren
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 1 Mar 2011 13:19:24 +0000 (14:19 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Thu, 16 Jun 2011 06:44:20 +0000 (08:44 +0200)
SL/Controller/CsvImport/Base.pm

index 13ae97c..9dc9168 100644 (file)
@@ -91,6 +91,8 @@ sub save_objects {
   my $data = $params{data} || $self->controller->data;
 
   foreach my $entry (@{ $data }) {
+    next if @{ $entry->{errors} };
+
     if (!$entry->{object}->save) {
       push @{ $entry->{errors} }, $::locale->text('Error when saving: #1', $entry->{object}->db->error);
     } else {