Lines 58-63
my $record_type = $input->param('record_type');
Link Here
|
58 |
my $encoding = $input->param('encoding') || 'UTF-8'; |
58 |
my $encoding = $input->param('encoding') || 'UTF-8'; |
59 |
my $format = $input->param('format') || 'ISO2709'; |
59 |
my $format = $input->param('format') || 'ISO2709'; |
60 |
my $marc_modification_template = $input->param('marc_modification_template_id'); |
60 |
my $marc_modification_template = $input->param('marc_modification_template_id'); |
|
|
61 |
my $existing_batch_id = $input->param('existing_batch_id'); |
61 |
|
62 |
|
62 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
63 |
my ( $template, $loggedinuser, $cookie ) = get_template_and_user( |
63 |
{ |
64 |
{ |
Lines 145-151
if ($completedJobID) {
Link Here
|
145 |
$marc_modification_template, |
146 |
$marc_modification_template, |
146 |
$comments, '', |
147 |
$comments, '', |
147 |
$parse_items, 0, |
148 |
$parse_items, 0, |
148 |
50, staging_progress_callback( $job, $dbh ) |
149 |
50, staging_progress_callback( $job, $dbh ), |
|
|
150 |
$existing_batch_id |
149 |
); |
151 |
); |
150 |
|
152 |
|
151 |
my $num_with_matches = 0; |
153 |
my $num_with_matches = 0; |
Lines 218-223
if ($completedJobID) {
Link Here
|
218 |
}); |
220 |
}); |
219 |
$template->param( plugins => \@plugins ); |
221 |
$template->param( plugins => \@plugins ); |
220 |
} |
222 |
} |
|
|
223 |
|
224 |
if ($existing_batch_id) { |
225 |
$template->param( |
226 |
existing_batch_id => $existing_batch_id, |
227 |
existing_batch => GetImportBatch($existing_batch_id), |
228 |
); |
229 |
} |
221 |
} |
230 |
} |
222 |
|
231 |
|
223 |
output_html_with_http_headers $input, $cookie, $template->output; |
232 |
output_html_with_http_headers $input, $cookie, $template->output; |
224 |
- |
|
|