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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/manage-marc-import.tt (-1 / +3 lines)
Lines 306-312 $(document).ready(function(){ Link Here
306
            [% END %]
306
            [% END %]
307
        [% END %]
307
        [% END %]
308
    </li>
308
    </li>
309
    
309
310
    [% IF ( record_type == 'biblio' ) %]
310
    <li>
311
    <li>
311
        [% IF ( can_commit ) %]
312
        [% IF ( can_commit ) %]
312
            <label for="item_action">Item processing:</label>
313
            <label for="item_action">Item processing:</label>
Lines 326-331 $(document).ready(function(){ Link Here
326
            [% END %]
327
            [% END %]
327
        [% END %]
328
        [% END %]
328
    </li>
329
    </li>
330
    [% END %]
329
  </ol>
331
  </ol>
330
[% IF ( can_commit ) %]<fieldset class="action"><input type="submit" value="Apply different matching rules" class="button" /></fieldset></form>[% END %]
332
[% IF ( can_commit ) %]<fieldset class="action"><input type="submit" value="Apply different matching rules" class="button" /></fieldset></form>[% END %]
331
</fieldset>
333
</fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/stage-marc-import.tt (-1 / +3 lines)
Lines 66-72 function CheckForm(f) { Link Here
66
          <li>Did not check for matches with existing records in catalog</li>
66
          <li>Did not check for matches with existing records in catalog</li>
67
        [% END %]
67
        [% END %]
68
    [% END %]
68
    [% END %]
69
	<li>[% num_items %] item records found and staged</li>
69
    [% IF record_type == 'biblio' %]
70
        <li>[% num_items %] item records found and staged</li>
71
    [% END %]
70
	[% IF ( label_batch ) %]
72
	[% IF ( label_batch ) %]
71
	  <li>New label batch created: # [% label_batch %] </li>
73
	  <li>New label batch created: # [% label_batch %] </li>
72
    [% END %]
74
    [% END %]
(-)a/tools/stage-marc-import.pl (-3 / +5 lines)
Lines 67-74 my ($template, $loggedinuser, $cookie) Link Here
67
					debug => 1,
67
					debug => 1,
68
					});
68
					});
69
69
70
$template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
70
$template->param(
71
						uploadmarc => $fileID);
71
    SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
72
    uploadmarc  => $fileID,
73
    record_type => $record_type,
74
);
72
75
73
my %cookies = parse CGI::Cookie($cookie);
76
my %cookies = parse CGI::Cookie($cookie);
74
my $sessionID = $cookies{'CGISESSID'}->value;
77
my $sessionID = $cookies{'CGISESSID'}->value;
75
- 

Return to bug 9067