Lines 41-48
use C4::ImportBatch;
Link Here
|
41 |
|
41 |
|
42 |
my $input = new CGI; |
42 |
my $input = new CGI; |
43 |
|
43 |
|
|
|
44 |
# Nothing sane can be done if asked to sort by the checkbox column, so we use the ID. |
44 |
my @sort_columns = |
45 |
my @sort_columns = |
45 |
qw/import_record_id title status overlay_status overlay_status/; |
46 |
qw/import_record_id import_record_id title status overlay_status overlay_status/; |
46 |
|
47 |
|
47 |
my $import_batch_id = $input->param('import_batch_id'); |
48 |
my $import_batch_id = $input->param('import_batch_id'); |
48 |
my $offset = $input->param('iDisplayStart'); |
49 |
my $offset = $input->param('iDisplayStart'); |
49 |
- |
|
|