View | Details | Raw Unified | Return to bug 27421
Collapse All | Expand All

(-)a/Koha/BackgroundJob/MARCImportRevertBatch.pm (-1 / +3 lines)
Lines 23-28 use base 'Koha::BackgroundJob'; Link Here
23
use C4::ImportBatch qw(
23
use C4::ImportBatch qw(
24
    BatchRevertRecords
24
    BatchRevertRecords
25
);
25
);
26
use Koha::Import::Records;
26
27
27
=head1 NAME
28
=head1 NAME
28
29
Lines 65-70 sub process { Link Here
65
    );
66
    );
66
67
67
    try {
68
    try {
69
        my $size = Koha::Import::Records->search({ import_batch_id => $import_batch_id })->count;
70
        $self->size($size)->store;
68
        (
71
        (
69
            $num_deleted,       $num_errors, $num_reverted,
72
            $num_deleted,       $num_errors, $num_reverted,
70
            $num_items_deleted, $num_ignored
73
            $num_items_deleted, $num_ignored
71
- 

Return to bug 27421