Bug 5428: (QA follow-up) Add searchid for deleting items in a batch and editing in...
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / tools / batchMod-del.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% SET footerjs = 1 %]
4 [% PROCESS 'i18n.inc' %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Koha &rsaquo; Tools &rsaquo; Batch item deletion</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 <!--[if IE]>
9 <style>#selections { display: none; }</style>
10 <![endif]-->
11 </head>
12 <body id="tools_batchMod-del" class="tools">
13 [% INCLUDE 'header.inc' %]
14 [% INCLUDE 'cat-search.inc' %]
15
16 <div id="breadcrumbs">
17     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo;
18     <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo;
19     <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Batch item deletion</a>
20 </div>
21
22 <div class="main container-fluid">
23
24                 [% IF ( show ) %]<h1>Batch item deletion</h1>[% ELSE %]<h1>Batch item deletion results</h1>[% END %]
25         [% IF ( barcode_not_unique ) %]<div class="dialog alert"><strong>Error saving item</strong>: Barcode must be unique.</div>[% END %]
26         [% IF ( no_next_barcode ) %]<div class="dialog alert"><strong>Error saving items</strong>: Unable to automatically determine values for barcodes. No item has been inserted.</div>[% END %]
27         [% IF ( book_on_loan ) %]<div class="dialog alert"><strong>Cannot delete</strong>: item is checked out.</div>[% END %]
28         [% IF ( book_reserved ) %]<div class="dialogalert"><strong>Cannot delete</strong>: item has a waiting hold.</div>[% END %]
29
30     [% UNLESS ( action ) %]
31
32     [% IF ( notfoundbarcodes.size ) %]
33         <div class="dialog alert">
34             [% IF ( itemresults ) %]<p>Warning, the following barcodes were not found:</p>[% ELSE %]<p>Warning: no barcodes were found</p>[% END %]
35         </div>
36         <table style="margin:auto;">
37             <thead>
38                 <tr><th>Barcodes not found</th></tr>
39             </thead>
40             <tbody>
41                 [% FOREACH notfoundbarcode IN notfoundbarcodes %]
42                     <tr><td>[% notfoundbarcode |html %]</td></td>
43                 [% END %]
44             </tbody>
45         </table>
46         [% UNLESS ( too_many_items_display ) %]
47             [% IF ( item_loop ) %]
48                     <h4>The following barcodes were found: </h4>
49             [% END %]
50         [% END %]
51     [% END %] <!-- /notfoundbarcodes -->
52     [% IF ( notfounditemnumbers.size ) %]
53         <div class="dialog alert">
54             [% IF ( itemresults ) %]<p>Warning, the following itemnumbers were not found:</p>[% ELSE %]<p>Warning: no itemnumbers were found</p>[% END %]
55         </div>
56         <table style="margin:auto;">
57             <thead>
58                 <tr><th>Itemnumbers not found</th></tr>
59             </thead>
60             <tbody>
61                 [% FOREACH notfounditemnumber IN notfounditemnumbers %]
62                     <tr><td>[% notfounditemnumber |html %]</td></td>
63                 [% END %]
64             </tbody>
65         </table>
66         [% UNLESS ( too_many_items_display ) %]
67             [% IF ( item_loop ) %]
68                     <h4>The following itemnumbers were found: </h4>
69             [% END %]
70         [% END %]
71     [% END %] <!-- /notfounditemnumbers -->
72
73
74
75
76 <form name="f" action="batchMod.pl" method="post">
77      <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber | html %]" />
78      <input type="hidden" name="op" value="[% op | html %]" />
79      <input type="hidden" name="searchid" value="[% searchid | html %]" />
80      <input type="hidden" name="uploadedfileid" id="uploadedfileid" value="" />
81      <input type="hidden" name="completedJobID" id="completedJobID" value="" />
82      <input type="hidden" name="src" id="src" value="[% src | html %]" />
83      [% IF biblionumber %]
84         <input type="hidden" name="biblionumber" id="biblionumber" value="[% biblionumber | html %]" />
85      [% END %]
86
87 [% IF ( item_loop ) %]
88     [% IF ( show ) %]<div id="toolbar"><a id="selectallbutton" href="#"><i class="fa fa-check"></i> Select all</a> | <a id="clearallbutton" href="#"><i class="fa fa-remove"></i> Clear all</a></div>[% END %]
89     <div id="cataloguing_additem_itemlist">
90
91     <p id="selections"><strong>Show/hide columns:</strong> <span class="selected"><input type="checkbox" checked="checked" id="showall"/><label for="showall">Show all columns</label></span> <span><input type="checkbox" id="hideall"/><label for="hideall">Hide all columns</label></span>
92         [% FOREACH item_header_loo IN item_header_loop %]
93         <span class="selected"><input id="checkheader[% loop.count | html %]" type="checkbox" checked="checked" /> <label for="checkheader[% loop.count | html %]">[% item_header_loo.header_value | html %]</label> </span>
94         [% END %]
95     </p>
96
97         <table id="itemst">
98             <thead>
99             <tr>
100                 [% IF ( show ) %]<th>&nbsp;</th>[% END %]
101                 <th class="anti-the">Title</th>
102                 <th class="holds_count" title="Item holds / Total holds">Holds</th>
103                 [% FOREACH item_header_loo IN item_header_loop %]
104                 <th> [% item_header_loo.header_value | html %] </th>
105                 [% END %]
106             </tr>
107             </thead>
108             <tbody>
109             [% FOREACH item_loo IN item_loop %]
110               <tr>
111                 [% IF show %]
112                   [% IF item_loo.nomod %]
113                     <td class="error">Cannot delete</td>
114                 [% ELSE %]
115                     [% SET can_be_deleted = item_loo.item.safe_to_delete %]
116                     [% IF can_be_deleted == 1 %]
117                         <td><input type="checkbox" name="itemnumber" value="[% item_loo.itemnumber | html %]" id="row[% item_loo.itemnumber | html %]" checked="checked" /></td>
118                     [% ELSE %]
119                         [% SWITCH can_be_deleted %]
120                         [% CASE "book_on_loan" %][% SET cannot_delete_reason = t("Item is checked out") %]
121                         [% CASE "not_same_branch" %][% SET cannot_delete_reason = t("Item does not belongs to your library") %]
122                         [% CASE "book_reserved" %][% SET cannot_delete_reason = t("Item has a waiting hold") %]
123                         [% CASE "linked_analytics" %][% SET cannot_delete_reason = t("Item has linked analytics") %]
124                         [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record wich biblio-level hold on it") %]
125                         [% CASE %][% SET cannot_delete_reason = t("Unknown reason") _ '(' _ can_be_deleted _ ')' %]
126                         [% END %]
127
128                         <td><input type="checkbox" name="itemnumber" value="[% item_loo.itemnumber | html %]" id="row[% item_loo.itemnumber | html %]" disabled="disabled" title="[% cannot_delete_reason | html %]"/></td>
129                     [% END %]
130                   [% END %]
131                 [% ELSE %]
132                   <td>&nbsp;</td>
133                 [% END %]
134                 <td>
135                     <label for="row[% item_loo.itemnumber | html %]">
136                         <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% item_loo.biblionumber | uri %]">
137                             [% item_loo.title | html %]
138                         </a>
139                         [% IF ( item_loo.author ) %], by [% item_loo.author | html %][% END %]
140                     </label>
141                 </td>
142                 <td class="holds_count">
143                     [% IF item_loo.holds %]
144                         [% IF item_loo.item_holds %]
145                             <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | uri %]" title="Holds on this item: [% item_loo.item_holds | html %] / Total holds on this record: [% item_loo.holds | html -%]" >
146                         [% ELSE %]
147                             <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | uri %]" title="No holds on this item / Total holds on this record: [% item_loo.holds | html -%]" >
148                         [% END %]
149                     [% ELSE %]
150                         [% IF item_loo.holds %]
151                             <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | uri %]" title="Holds on this record: [% item_loo.holds | html -%]" >
152                         [% ELSE %]
153                             <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% item_loo.biblionumber | uri %]" title="No holds on this record" >
154                         [% END %]
155                     [% END %]
156                                 [% IF item_loo.holds %]
157                                     [% item_loo.item_holds | html %]/[% item_loo.holds | html %]
158                                 [% ELSE %]
159                                     [% item_loo.holds | html %]
160                                 [% END %]
161                             </a>
162                 </td>
163             [% FOREACH item_valu IN item_loo.item_value %] <td>[% item_valu.field | html %]</td>
164                     [% END %] </tr>
165             [% END %]
166             </tbody>
167         </table>
168     </div>
169 [% END %]
170
171 [% IF ( simple_items_display ) %]
172     <ul>
173     [% FOREACH simple_items_displa IN simple_items_display %]
174         <li>
175             <a href="[% simple_items_displa.itemnumber | url %]">[% simple_items_displa.barcode | html %]</a>
176         </li>
177     [% END %]
178     </ul>
179 [% END %]
180
181
182 [% IF ( show ) %]
183
184 [% IF ( too_many_items_display ) %]
185     <p>Too many items ([% too_many_items_display | html %]) to display individually.</p>
186     [% FOREACH itemnumber IN itemnumbers_array %]
187         <input type="hidden" name="itemnumber" value="[% itemnumber | html %]" />
188     [% END %]
189 [% END %]
190
191 [% IF ( itemresults ) %]
192         <div id="cataloguing_additem_newitem">
193          <input type="hidden" name="op" value="[% op | html %]" />
194          <p>This will delete [% IF ( too_many_items_display ) %]all the[% ELSE %]the selected[% END %] items.</p>
195          <input type="hidden" name="del" value="1" />
196          <fieldset class="action">
197         <input type="checkbox" name="del_records" id="del_records" /> <label for="del_records">Delete records if no items remain.</label>
198         [% IF too_many_items_display %]
199             <input type="submit" name="mainformsubmit" value="Delete ALL submitted items" />
200         [% ELSE %]
201             <input type="submit" name="mainformsubmit" value="Delete selected items" />
202         [% END %]
203
204         <a href="/cgi-bin/koha/tools/batchMod.pl?del=1" class="cancel">Cancel</a>
205         </fieldset>
206     </div>
207     [% ELSE %]
208     <p><a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Return to batch item deletion</a></p>
209     [% END %]
210     [% END %]
211     </form>
212     [% END %]
213
214 [% IF ( action ) %]
215     [% IF deletion_failed %]
216         <div class="dialog alert">
217             At least one item blocked the deletion. The operation rolled back and nothing happened!
218         </div>
219     [% ELSE %]
220         <div class="dialog message">
221             <p>[% deleted_items | html %] item(s) deleted.</p>
222             [% IF delete_records %] <p>[% deleted_records | html %] record(s) deleted.</p> [% END %]
223             [% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%]
224                 [% IF biblio_deleted %]
225                     [% IF searchid %]
226                         <div id="previous_search_link"></div>
227                     [% END %]
228                     <a href="/cgi-bin/koha/cataloguing/addbooks.pl">Return to the cataloging module</a>
229                 [% ELSE %]
230                     [% IF searchid %]
231                         <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]&searchid=[% searchid | uri %]">Return to the record</a>
232                     [% ELSE %]
233                         <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]">Return to the record</a>
234                     [% END %]
235                 [% END %]
236             [% ELSIF src %]
237                 <a href="[% src | url %]">Return to where you were</a>
238             [% ELSE %]
239                 <a href="/cgi-bin/koha/tools/batchMod.pl?del=1">Return to batch item deletion</a>
240             [% END %]
241         </div>
242     [% END %]
243     [% IF ( not_deleted_items ) %]
244     <div style="width:55%;margin:auto;">
245         <p>[% not_deleted_items | html %] item(s) could not be deleted: [% FOREACH not_deleted_itemnumber IN not_deleted_itemnumbers %][% not_deleted_itemnumber.itemnumber | html %][% END %]</p>
246     [% IF ( not_deleted_loop ) %]
247     <table id="itemst">
248         <thead>
249             <tr>
250             <th>Itemnumber</th>
251             <th>Barcode</th>
252             <th>Reason</th>
253             </tr>
254         </thead>
255         <tbody>
256             [% FOREACH not_deleted_loo IN not_deleted_loop %]
257             <tr>
258                 <td>[% not_deleted_loo.itemnumber | html %]</td>
259                 <td>[% IF ( CAN_user_editcatalogue_edit_items ) %]<a href="/cgi-bin/koha/cataloguing/additem.pl?op=edititem&amp;biblionumber=[% not_deleted_loo.biblionumber | uri %]&amp;itemnumber=[% not_deleted_loo.itemnumber | uri %]">[% not_deleted_loo.barcode | html %]</a>[% ELSE %][% not_deleted_loo.barcode | html %][% END %]</td>
260                 <td>
261                     [% SWITCH not_deleted_loo.reason %]
262                     [% CASE "book_on_loan" %][% SET cannot_delete_reason = t("Item is checked out") %]
263                     [% CASE "not_same_branch" %][% SET cannot_delete_reason = t("Item does not belongs to your library") %]
264                     [% CASE "book_reserved" %][% SET cannot_delete_reason = t("Item has a waiting hold") %]
265                     [% CASE "linked_analytics" %][% SET cannot_delete_reason = t("Item has linked analytics") %]
266                     [% CASE "last_item_for_hold" %][% SET cannot_delete_reason = t("Last item for bibliographic record wich biblio-level hold on it") %]
267                     [% CASE %][% SET cannot_delete_reason = t("Unknown reason") _ '(' _ can_be_deleted _ ')' %]
268                     [% END %]
269                     [% cannot_delete_reason | html %]
270                 </td>
271             </tr>
272             [% END %]
273         </tbody>
274         </table>
275     [% END %]
276     </div>
277     [% END %]
278
279     <p>
280         [% IF src == 'CATALOGUING' # from catalogue/detail.pl > Delete items in a batch%]
281             [% IF biblio_deleted %]
282                 <a class="btn btn-default" href="/cgi-bin/koha/cataloguing/addbooks.pl"><i class="fa fa-check-square-o"></i> Return to the cataloging module</a>
283             [% ELSE %]
284                <a class="btn btn-default" href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% biblionumber | uri %]"><i class="fa fa-check-square-o"></i> Return to the record</a>
285             [% END %]
286         [% ELSIF src %]
287            <a class="btn btn-default" href="[% src | url %]"><i class="fa fa-check-square-o"></i> Return to where you were</a>
288         [% ELSE %]
289            <a class="btn btn-default" href="/cgi-bin/koha/tools/batchMod.pl?del=1"><i class="fa fa-check-square-o"></i> Return to batch item deletion</a>
290         [% END %]
291     </p>
292 [% END %]
293     </div>
294
295 [% MACRO jsinclude BLOCK %]
296     [% Asset.js("js/tools-menu.js") | $raw %]
297     [% INCLUDE 'datatables.inc' %]
298     [% Asset.js("js/pages/batchMod.js") | $raw %]
299     [% Asset.js("lib/jquery/plugins/jquery.checkboxes.min.js") | $raw %]
300     [% Asset.js("js/browser.js") | $raw %]
301     <script type="text/javascript">
302         // Prepare array of all column headers, incrementing each index by
303         // two to accommodate control and title columns
304         var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count | html %]'[% UNLESS ( loop.last ) %],[% END %][% END %]);
305         for( x=0; x<allColumns.length; x++ ){
306           allColumns[x] = Number(allColumns[x]) + 2;
307         }
308         $(document).ready(function(){
309             $("#mainformsubmit").on("click",function(){
310                 return submitBackgroundJob(this.form);
311             });
312         });
313
314         [% IF searchid %]
315             browser = KOHA.browser('[% searchid | html %]');
316             browser.show_back_link();
317         [% END %]
318     </script>
319 [% END %]
320
321 [% INCLUDE 'intranet-bottom.inc' %]