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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-del.tt (-2 / +7 lines)
Lines 67-77 for( x=0; x<allColumns.length; x++ ){ Link Here
67
67
68
68
69
<form name="f" action="batchMod.pl" method="post">
69
<form name="f" action="batchMod.pl" method="post">
70
     <input type="hidden" name="src" id="src" value="[% src %]" />
71
     <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]" />
70
     <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]" />
72
     <input type="hidden" name="op" value="[% op %]" />
71
     <input type="hidden" name="op" value="[% op %]" />
73
     <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
72
     <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
74
     <input type="hidden" name="completedJobID" id="completedJobID" value="" />
73
     <input type="hidden" name="completedJobID" id="completedJobID" value="" />
74
     <input type="hidden" name="src" id="src" value="[% src %]" />
75
     [% IF biblionumber %]
76
        <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]" />
77
     [% END %]
75
78
76
[% IF ( item_loop ) %]
79
[% IF ( item_loop ) %]
77
	[% IF ( show ) %]<div id="toolbar"><a id="selectallbutton" href="#">Select All</a> | <a id="clearallbutton" href="#">Clear All</a></div>[% END %]
80
	[% IF ( show ) %]<div id="toolbar"><a id="selectallbutton" href="#">Select All</a> | <a id="clearallbutton" href="#">Clear All</a></div>[% END %]
Lines 180-186 for( x=0; x<allColumns.length; x++ ){ Link Here
180
	[% END %]
183
	[% END %]
181
184
182
    <p>
185
    <p>
183
        [% IF src %]
186
        [% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%]
187
           <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">Done</a>
188
        [% ELSIF src %]
184
           <a href="[% src %]">Done</a>
189
           <a href="[% src %]">Done</a>
185
        [% ELSE %]
190
        [% ELSE %]
186
           <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Return to batch item deletion</a>
191
           <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Return to batch item deletion</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batchMod-edit.tt (-2 / +6 lines)
Lines 94-99 $(document).ready(function(){ Link Here
94
     <input type="hidden" name="runinbackground" id="runinbackground" value="" />
94
     <input type="hidden" name="runinbackground" id="runinbackground" value="" />
95
     <input type="hidden" name="completedJobID" id="completedJobID" value="" />
95
     <input type="hidden" name="completedJobID" id="completedJobID" value="" />
96
     <input type="hidden" name="src" id="src" value="[% src %]" />
96
     <input type="hidden" name="src" id="src" value="[% src %]" />
97
     [% IF biblionumber %]
98
        <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber %]" />
99
     [% END %]
97
100
98
[% IF ( item_loop ) %]
101
[% IF ( item_loop ) %]
99
  [% IF show %]
102
  [% IF show %]
Lines 204-210 $(document).ready(function(){ Link Here
204
[% END %]
207
[% END %]
205
[% ELSE %] <!-- // show -->
208
[% ELSE %] <!-- // show -->
206
<fieldset class="action">
209
<fieldset class="action">
207
[% IF src %]
210
[% IF src == 'CATALOGUING' # from catalogue/detail.pl > Edit items in a batch%]
211
   <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber %]">Done</a>
212
[% ELSIF src %]
208
   <a href="[% src %]">Done</a>
213
   <a href="[% src %]">Done</a>
209
[% ELSE %]
214
[% ELSE %]
210
   <a href="/cgi-bin/koha/tools/batchMod.pl">Done</a>
215
   <a href="/cgi-bin/koha/tools/batchMod.pl">Done</a>
211
- 

Return to bug 11475