Revision ad872b5a
Von Bernd Bleßmann vor mehr als 8 Jahren hinzugefügt
SL/Controller/CsvImport.pm | ||
---|---|---|
204 | 204 |
|
205 | 205 |
my $rows = SL::DB::Manager::CsvImportReportRow->get_all(query => \@query); |
206 | 206 |
my $status = SL::DB::Manager::CsvImportReportStatus->get_all(query => \@query); |
207 |
$self->{num_errors} = SL::DB::Manager::CsvImportReportStatus->get_all_count(query => [ and => [csv_import_report_id => $report_id, |
|
208 |
type => 'errors'] ]); |
|
207 | 209 |
|
208 | 210 |
$self->{report_rows} = $self->{report}->folded_rows(rows => $rows); |
209 | 211 |
$self->{report_status} = $self->{report}->folded_status(status => $status); |
Auch abrufbar als: Unified diff
Csv-Import: Anzahl der Fehler beim Ergebnis anzeigen.