| 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 $basketno                   = $input->param('basketno'); | 
            
              | 62 | my $booksellerid               = $input->param('booksellerid'); | 
        
          | 61 |  | 63 |  | 
        
          | 62 | my ( $template, $loggedinuser, $cookie ) = get_template_and_user( | 64 | my ( $template, $loggedinuser, $cookie ) = get_template_and_user( | 
        
          | 63 |     { | 65 |     { | 
  
    | Lines 74-79
          $template->param(
      
      
        Link Here | 
        
          | 74 |     SCRIPT_NAME => '/cgi-bin/koha/tools/stage-marc-import.pl', | 76 |     SCRIPT_NAME => '/cgi-bin/koha/tools/stage-marc-import.pl', | 
        
          | 75 |     uploadmarc  => $fileID, | 77 |     uploadmarc  => $fileID, | 
        
          | 76 |     record_type => $record_type, | 78 |     record_type => $record_type, | 
            
              |  |  | 79 |     basketno => $basketno, | 
            
              | 80 |     booksellerid => $booksellerid, | 
        
          | 77 | ); | 81 | ); | 
        
          | 78 |  | 82 |  | 
        
          | 79 | my %cookies = parse CGI::Cookie($cookie); | 83 | my %cookies = parse CGI::Cookie($cookie); | 
  
    | Lines 181-187
          if ($completedJobID) {
      
      
        Link Here | 
        
          | 181 |         checked_matches => $checked_matches, | 185 |         checked_matches => $checked_matches, | 
        
          | 182 |         matcher_failed  => $matcher_failed, | 186 |         matcher_failed  => $matcher_failed, | 
        
          | 183 |         matcher_code    => $matcher_code, | 187 |         matcher_code    => $matcher_code, | 
          
            
              | 184 |         import_batch_id => $batch_id | 188 |         import_batch_id => $batch_id, | 
            
              |  |  | 189 |         booksellerid    => $booksellerid, | 
            
              | 190 |         basketno        => $basketno | 
        
          | 185 |     }; | 191 |     }; | 
        
          | 186 |     if ($runinbackground) { | 192 |     if ($runinbackground) { | 
        
          | 187 |         $job->finish($results); | 193 |         $job->finish($results); | 
  
    | Lines 195-201
          if ($completedJobID) {
      
      
        Link Here | 
        
          | 195 |                          checked_matches => $checked_matches, | 201 |                          checked_matches => $checked_matches, | 
        
          | 196 |                          matcher_failed => $matcher_failed, | 202 |                          matcher_failed => $matcher_failed, | 
        
          | 197 |                          matcher_code => $matcher_code, | 203 |                          matcher_code => $matcher_code, | 
          
            
              | 198 |                          import_batch_id => $batch_id | 204 |                          import_batch_id => $batch_id, | 
            
              |  |  | 205 |                          booksellerid => $booksellerid, | 
            
              | 206 |                          basketno => $basketno | 
        
          | 199 |                         ); | 207 |                         ); | 
        
          | 200 |     } | 208 |     } | 
        
          | 201 |  | 209 |  | 
            
              | 202 | -  |  |  |