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