Bug 21978: Use patron-title for holdfor handling in results
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / virtualshelves / shelves.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% USE KohaDates %]
5 [% SET footerjs = 1 %]
6 [% INCLUDE 'doc-head-open.inc' %]
7 <title>
8     [% IF op == 'view' %]
9         Contents of [% shelf.shelfname | html %] &rsaquo; [% END %]
10
11     [% IF op == 'add_form' %]
12         Create new list &rsaquo; [% END %]
13
14     [% IF op == 'edit_form' %]
15         Edit list [% shelf.shelfname | html %] &rsaquo; [% END %]
16     Lists &rsaquo; Koha
17 </title>
18 [% INCLUDE 'doc-head-close.inc' %]
19 <style>textarea { width: 100%; }</style>
20
21 [% BLOCK list_permissions %]
22     <li>
23         <label for="allow_changes_from">Allow changes to contents from: </label>
24         <select name="allow_changes_from" id="allow_changes_from" onchange="AdjustRemark()">
25
26             [% IF shelf.allow_change_from_owner %]<option value="0">Nobody</option>[% ELSE %]<option value="0" selected="selected">Nobody</option>[% END %]
27
28             [% IF shelf.allow_change_from_owner && (( !shelf.is_public && !shelf.is_shared ) || !shelf.allow_change_from_others ) %]
29                 <option value="1" selected="selected">Owner only</option>
30             [% ELSE %]
31                 <option value="1">Owner only</option>
32             [% END %]
33
34             [% IF shelf.allow_change_from_others %]<option value="2" selected="selected">Anyone seeing this list</option>[% ELSE %]<option value="2">Anyone seeing this list</option>[% END %]
35
36             [% IF shelf.allow_change_from_staff %]<option value="3" selected="selected">Staff only</option>[% ELSE %]<option value="3">Staff only</option>[% END %]
37
38         </select>
39         &emsp; <span id="anyone_remark" style="display:none;color:red;">The Anyone permission has no actual effect while this list is strictly private.</span>
40         &emsp; <span id="staff_remark" style="display:none;color:red;">The Staff only permission has no actual effect while this list is strictly private.</span>
41     </li>
42 [% END %]
43 </head>
44
45 <body id="lists_shelves" class="lists">
46 [% INCLUDE 'header.inc' %]
47 [% INCLUDE 'cat-search.inc' %]
48
49 <nav id="breadcrumbs" aria-label="Breadcrumb" class="breadcrumb">
50     <ol>
51         <li>
52             <a href="/cgi-bin/koha/mainpage.pl">Home</a>
53         </li>
54
55         [% IF op != 'list' %]
56             <li>
57                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl">Lists</a>
58             </li>
59         [% ELSE %]
60             <li>
61                 <a href="#" aria-current="page">
62                     Lists
63                 </a>
64             </li>
65         [% END %]
66
67         [% IF shelf AND shelf.is_private %]
68             [% IF op == 'view' OR op == 'edit_form' %]
69                 <li>
70                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=0">Your lists</a>
71                 </li>
72             [% ELSE %]
73                 <li>
74                     <a href="#" aria-current="page">
75                         Your lists
76                     </a>
77                 </li>
78             [% END %]
79
80         [% ELSIF shelf AND shelf.is_public %]
81             [% IF op == 'view' %]
82                 <li>
83                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=1">Public lists</a>
84                 </li>
85             [% ELSE %]
86                 <li>
87                     <a href="#" aria-current="page">
88                         Public lists
89                     </a>
90                 </li>
91             [% END %]
92         [% END %]
93
94         [% IF op == 'view' %]
95             <li>
96                 <a href="#" aria-current="page">
97             Contents of <em>[% shelf.shelfname | html %]</em>
98                 </a>
99             </li>
100         [% END %]
101
102         [% IF op == 'add_form' %]
103             <li>
104                 <a href="#" aria-current="page">
105                     Create new list
106                 </a>
107             </li>
108         [% END %]
109
110         [% IF op == 'edit_form' %]
111             <li>
112                 <a href="#" aria-current="page">
113                     Edit list <em>[% shelf.shelfname | html %]</em>
114                 </a>
115             </li>
116         [% END %]
117     </ol>
118 </nav>
119
120     <div class="main container-fluid">
121         <div class="row">
122             <div class="col-sm-10 col-sm-push-1">
123                 <main>
124
125                 [% INCLUDE 'virtualshelves-toolbar.inc' %]
126
127 [% FOR m IN messages %]
128     <div class="dialog [% m.type | html %]">
129         [% SWITCH m.code %]
130         [% CASE 'error_on_update' %]
131             <span>An error occurred when updating this list.</span>
132         [% CASE 'error_on_insert' %]
133             <span>An error occurred when creating this list.</span>
134         [% CASE 'error_on_delete' %]
135             <span>An error occurred when deleting this list.</span>
136         [% CASE 'error_on_add_biblio' %]
137             [% IF m.item_barcode %]
138                <span>The item ([% m.item_barcode | html %]) has not been added to the list. Please verify it is not already in the list.</span>
139             [% ELSE %]
140                 <span>The record ([% m.bibnum | html %]) has not been added to the list. Please verify it is not already in the list.</span>
141             [% END %]
142         [% CASE 'success_on_update' %]
143             <span>List updated.</span>
144         [% CASE 'success_on_insert' %]
145             <span>List created.</span>
146         [% CASE 'success_on_delete' %]
147             <span>List deleted.</span>
148         [% CASE 'success_on_add_biblio' %]
149             [% IF m.item_barcode %]
150                 <span>The item ([% m.item_barcode | html %]) has been added to the list.</span>
151             [% ELSE %]
152                 <span>The record ([% m.bibnum | html %]) has been added to the list.</span>
153             [% END %]
154         [% CASE 'success_on_remove_biblios' %]
155             <span>The item has been removed from the list.</span>
156         [% CASE 'does_not_exist' %]
157             <span>This list does not exist.</span>
158         [% CASE 'item_does_not_exist' %]
159             [% IF m.item_barcode %]
160                 <span>The item ([% m.item_barcode | html %]) does not exist.</span>
161             [% ELSE %]
162                 <span>The record ([% m.bibnum | html %]) does not exist.</span>
163             [% END %]
164         [% CASE 'unauthorized_on_view' %]
165             <span>You do not have permission to view this list.</span>
166         [% CASE 'unauthorized_on_update' %]
167             <span>You do not have permission to update this list.</span>
168         [% CASE 'unauthorized_on_delete' %]
169            <span>You do not have permission to delete this list.</span>
170         [% CASE 'unauthorized_on_add_biblio' %]
171             <span>You do not have permission to add a record to this list.</span>
172         [% CASE 'no_biblio_removed' %]
173             <span>No record was removed.</span>
174         [% CASE 'Koha::Exceptions::Virtualshelf::DuplicateObject' %]
175             <span>An error occurred when creating this list. The name [% shelfname | html %] already exists.</span>
176         [% CASE 'Koha::Exceptions::Virtualshelf::UseDbAdminAccount' %]
177             <span>List could not be created. (Do not use the database administrator account.)</span>
178         [% CASE 'DBIx::Class::Exception' %]
179             [% m.msg | html %]
180         [% CASE %]
181             [% m.code | html %] [% m.msg | html %]
182         [% END %]
183     </div>
184 [% END %]
185
186 [% IF op == 'view' %]
187     <h1>Contents of <em>[% shelf.shelfname | html %]</em></h1>
188     [% IF itemsloop %]
189     <div class="pages">[% pagination_bar | $raw %]</div>
190     <form action="/cgi-bin/koha/virtualshelves/shelves.pl" id="listform" method="post">
191         <input type="hidden" name="op" value="remove_biblios" />
192         <input type="hidden" name="referer" value="view" />
193         <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
194
195 [% IF direction == 'asc' %]
196     [% SET new_direction = 'desc' %]
197 [% ELSE %]
198     [% SET direction = 'desc' %]
199     [% SET new_direction = 'asc' %]
200 [% END %]
201
202 [% IF itemsloop %]
203     <div id="searchheader" class="searchheader noprint">
204         <div id="selection_ops"><span class="checkall"></span> |
205         <span class="clearall"></span>
206
207         <span class="addto">| </span>
208         &nbsp;
209         [% IF CAN_user_reserveforothers && Koha.Preference('DisplayMultiPlaceHold') %]
210             <div class="btn-group"><button class="btn btn-default btn-xs placehold"><i class="fa fa-sticky-note-o"></i> Place hold</button></div>
211         [% END %]
212         [% IF can_remove_biblios %]
213             <div class="btn-group"><button type="submit" class="btn btn-default btn-xs list-remove"><i class="fa fa-trash"></i> Remove selected</button></div>
214         [% END %]
215         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]<div class="btn-group"><button type="submit" class="btn btn-default btn-xs merge-items"><i class="fa fa-compress"></i> Merge selected</button></div>[% END %]
216         </div>
217     </div>
218 [% END %]
219
220     <table id="searchresults" class="dataTable">
221         <thead>
222             <tr>
223                 [% IF ( itemsloop ) %]<th class="checkall">&nbsp;</th>[% END %]
224
225                 [% UNLESS ( item_level_itypes ) %]<th>Item type</th>[% END %]
226                 [% IF sortfield == 'title' %]
227                     <th class="sorting_[% direction | html %]">
228                 [% ELSE %]
229                     <th class="sorting">
230                 [% END %]
231                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]&amp;sortfield=title&amp;direction=[% IF sortfield != 'title' %]asc[% ELSE %][% new_direction | uri %][% END %]">Title</a>
232                 </th>
233                 [% IF sortfield == 'author' %]
234                     <th class="sorting_[% direction | html %]">
235                 [% ELSE %]
236                     <th class="sorting">
237                 [% END %]
238                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]&amp;sortfield=author&amp;direction=[% IF sortfield != 'author' %]asc[% ELSE %][% new_direction | uri %][% END %]">Author</a>
239                 </th>
240                 [% IF sortfield == 'dateadded' %]
241                     <th class="sorting_[% direction | html %]">
242                 [% ELSE %]
243                     <th class="sorting">
244                 [% END %]
245                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]&amp;sortfield=dateadded&amp;direction=[% IF sortfield != 'dateadded' %]asc[% ELSE %][% new_direction | uri %][% END %]">Date added</a>
246                 </th>
247                 [% IF sortfield == 'itemcallnumber' %]
248                      <th class="sorting_[% direction | html %]">
249                 [% ELSE %]
250                     <th class="sorting">
251                 [% END %]
252                     <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]&amp;sortfield=itemcallnumber&amp;direction=[% IF sortfield != 'itemcallnumber' %]asc[% ELSE %][% new_direction | uri %][% END %]">Call number</a>
253                  </th>
254             </tr>
255         </thead>
256         [% FOREACH itemsloo IN itemsloop %]
257                 <tr>
258             [% IF itemsloop %]
259                 <td>
260                     <input type="checkbox" class="selection" value="[% itemsloo.biblionumber | html %]" name="biblionumber" />
261                 </td>
262             [% END %]
263                         [% UNLESS ( item_level_itypes ) %]<td>
264                 [% UNLESS ( noItemTypeImages || !itemsloo.imageurl ) %]<img src="[% itemsloo.imageurl | html %]" alt="[% itemsloo.description | html %]" title="[% itemsloo.description | html %]" />[% END %][% itemsloo.description | html %]
265                         </td>[% END %]
266                         <td>
267                 [% IF ( itemsloo.XSLTBloc ) %]
268                     [% itemsloo.XSLTBloc | $raw %]
269                 [% ELSE %]
270                         [% INCLUDE 'biblio-title.inc' biblio=itemsloo link = 1 %]
271                     </a>
272                 [% END %]
273                     <p class="hold">
274                         [% IF ( itemsloo.notforloan ) %]
275                             <span class="noholdstext">No holds allowed</span>
276                         [% ELSE %]
277                             [% IF ( itemsloo.ITEM_RESULTS.size ) %]
278                                 <a id="reserve_[% itemsloo.biblionumber | html %]" href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | html %]">Holds</a>
279                                 [% IF ( holdfor ) %] <span class="holdforlink">| <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% itemsloo.biblionumber | uri %]&amp;findborrower=[% holdfor_cardnumber | uri %]">Place hold for [% INCLUDE 'patron-title.inc' patron => holdfor_patron no_title => 1 %]</a></span>[% END %]
280                             [% ELSE %]
281                                 <span class="noholdstext">No holds allowed</span>
282                             [% END %]
283                         [% END %]
284                         [% IF ( CAN_user_editcatalogue_edit_catalogue ) %]
285                             | <a href="/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=[% itemsloo.biblionumber | uri %]">Edit record</a>
286                         [% END %]
287                         [% IF ( CAN_user_editcatalogue_edit_items ) %]
288                             | <a href="/cgi-bin/koha/cataloguing/additem.pl?biblionumber=[% itemsloo.biblionumber | uri %]">Edit items</a>
289                         [% END %]
290                     </p>
291             </td>
292             <td>[% itemsloo.author | html %]</td>
293             <td>[% itemsloo.dateadded | $KohaDates%]</td>
294             <td>
295                 <ul>
296                 [% FOREACH result IN itemsloo.ITEM_RESULTS %]
297                     <li>
298                         [% result.holdingbranch | html %]
299                         [% IF ( result.location_intranet ) %]<span class="shelvingloc">[% result.location_intranet | html %]</span>[% END %]
300                         [% IF ( result.itemcallnumber ) %]
301                             [<a href="/cgi-bin/koha/catalogue/search.pl?idx=callnum&amp;q=%22[% result.itemcallnumber |uri %]%22">[% result.itemcallnumber | html %]</a>]
302                         [% END %]
303                     </li>
304                 [% END %]
305                 </ul>
306             </td>
307                         </tr>
308                 [% END %]<!-- /itemsloop -->
309     </table>
310     <div class="pages">[% pagination_bar | $raw %]</div>
311 </form>
312
313         [% END %]
314 [% END %]
315
316 [% IF op == 'add_form' OR op == 'edit_form' %]
317
318     <form method="post" action="/cgi-bin/koha/virtualshelves/shelves.pl" class="validated">
319         <fieldset class="rows">
320
321         [% IF op == 'add_form' %]
322         <legend><h1>Create a new list</h1></legend>
323             <input type="hidden" name="op" value="add" />
324         [% ELSE %]
325         <legend><h1>Edit list <em>[% shelf.shelfname | html %]</em></h1></legend>
326             <input type="hidden" name="op" value="edit" />
327         [% END %]
328         <input type="hidden" name="referer" value="[% referer | html %]" />
329         <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
330         <ol>
331             <li>
332                 <label for="shelfname" class="required">Name: </label><input type="text" id="shelfname" name="shelfname" size="25" value="[% shelf.shelfname | html %]" required="required" class="focus required" />
333             <span class="required">Required</span>
334             </li>
335             <li>
336                 <span class="label">Owner: </span>
337                 [% IF op == 'add_form' %]
338                     <input type="hidden" name="owner" id="owner" value="[% loggedinusernumber | html %]" />[% logged_in_user.userid | html %]
339                 [% ELSE %]
340                     [% IF owner %]
341                         <input type="hidden" id="owner" name="owner" value="[% owner.borrowernumber | html %]" />[% owner.firstname _ ' ' _ owner.surname | html %]
342                     [% ELSE %]
343                         <input type="hidden" id="owner" name="owner" value="[% loggedinusernumber | html %]" />[% logged_in_user.userid | html %]
344                     [% END %]
345                 [% END %]
346             </li>
347             <li><label for="sortfield" >Sort this list by: </label>
348             <select name="sortfield">
349             [% IF shelf.sortfield == "title" %]<option value="title" selected="selected">Title</option>[% ELSE %]<option value="title">Title</option>[% END %]
350             [% IF shelf.sortfield == "author" %]<option value="author" selected="selected">Author</option>[% ELSE %]<option value="author">Author</option>[% END %]
351             [% IF shelf.sortfield == "copyrightdate" %]<option value="copyrightdate" selected="selected">Copyrightdate</option>[% ELSE %]<option value="copyrightdate">Copyrightdate</option>[% END %]
352             [% IF shelf.sortfield == "itemcallnumber" %]<option value="itemcallnumber" selected="selected">Call number</option>[% ELSE %]<option value="itemcallnumber">Call number</option>[% END %]
353             [% IF shelf.sortfield == "dateadded" %]<option value="dateadded" selected="selected">Date added</option>[% ELSE %]<option value="dateadded">Date added</option>[% END %]
354             </select></li>
355             <li><label for="public">Public: </label>
356                 <select id="public" name="public" onchange="AdjustRemark()">
357                 [% IF shelf.is_private %]
358                     <option value="0" selected="selected">Private</option>
359                 [% ELSE %]
360                     <option value="0">Private</option>
361                 [% END %]
362                 [% IF shelf.is_public %]
363                     <option value="1" selected="selected">Public</option>
364                 [% ELSE %]
365                     <option value="1">Public</option>
366                 [% END %]
367                            </select></li>
368
369             [% INCLUDE list_permissions %]
370
371         </ol>
372     </fieldset>
373
374     <fieldset class="action">
375         <input type="submit" value="Save" class="submit" />
376         [% IF referer == 'view' %]
377            <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=view&amp;shelfnumber=[% shelf.shelfnumber | uri %]" class="cancel">Cancel</a>
378        [% ELSE %]
379             [% IF public %]
380                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=1" class="cancel">Cancel</a>
381             [% ELSE %]
382                 <a href="/cgi-bin/koha/virtualshelves/shelves.pl?op=list&amp;public=0" class="cancel">Cancel</a>
383             [% END %]
384         [% END %]
385     </fieldset>
386     </form>
387
388 [% END %]
389
390 [% IF op == 'list' %]
391     <h1>Lists</h1>
392     <div id="tabs" class="toptabs">
393         <ul>
394             <li id="privateshelves_tab" class="active"><a href="#tab_content">Your lists</a></li>
395             <li id="publicshelves_tab" class="active"><a href="#tab_content">Public lists</a></li>
396         </ul>
397
398         <div id="tab_content">
399             <table id="listresultst">
400                 <thead>
401                     <tr>
402                         <th class="NoVisible">Type</th>
403                         <th>List name</th>
404                         <th>Contents</th>
405                         <th>Type</th>
406                         <th>Owner</th>
407                         <th>Sort by</th>
408                         <th>Creation date</th>
409                         <th>Modification date</th>
410                         <th class="noExport">Actions</th>
411                     </tr>
412                     <tr class="filters_row">
413                         <th></th>
414                         <th><input class="filter text_filter" id="searchshelfname_filter" placeholder="List name"></th>
415                         <th></th>
416                         <th></th>
417                         <th><input class="filter text_filter" id="searchowner_filter" placeholder="Owner"></th>
418                         <th>
419                             <select class="filter text_filter" id="searchsortby_filter">
420                                 <option value=""></option>
421                                 <option value="title">Title</option>
422                                 <option value="author">Author</option>
423                                 <option value="copyrightdate">Copyrightdate</option>
424                                 <option value="itemcallnumber">Call number</option>
425                                 <option value="dateadded">Date added</option>
426                             </select>
427                         </th>
428                         <th></th>
429                         <th></th>
430                         <th></th>
431                     </tr>
432                 </thead>
433                 <tbody></tbody>
434             </table>
435         </div>
436     </div>
437 [% END %]
438
439 <form id="hold_form" method="get" action="/cgi-bin/koha/reserve/request.pl">
440     <!-- Values will be set here by placeHold() -->
441 </form>
442
443             </main>
444         </div> <!-- /.col-sm-10.col-sm-push-2 -->
445     </div> <!-- /.row -->
446
447 [% IF ( can_add_biblios ) %]
448     <!-- Modal -->
449     <div class="modal" id="addToList" tabindex="-1" role="dialog" aria-labelledby="addToListLabel">
450         <div class="modal-dialog" role="document">
451             <form action="/cgi-bin/koha/virtualshelves/shelves.pl" method="post">
452                 <div class="modal-content">
453                     <div class="modal-header">
454                         <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
455                         <h4 class="modal-title" id="addToListLabel">Add items</h4>
456                     </div>
457                     <div class="modal-body">
458                         <fieldset class="brief">
459                         <ol>
460                             <li>
461                                 <label for="barcodes">Barcodes:</label>
462                                 <textarea name="barcodes" id="barcodes" rows="5"></textarea>
463                                 <input type="hidden" name="op" value="add_biblio" />
464                                 <input type="hidden" name="referer" value="view" />
465                                 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
466                             </li>
467                             <li>
468                                 <label for="biblionumbers">Biblio numbers:</label>
469                                 <textarea name="biblionumbers" id="biblionumbers" rows="5"></textarea>
470                                 <input type="hidden" name="op" value="add_biblio" />
471                                 <input type="hidden" name="referer" value="view" />
472                                 <input type="hidden" name="shelfnumber" value="[% shelf.shelfnumber | html %]" />
473                             </li>
474                         </ol>
475                         </fieldset>
476                     </div>
477                     <div class="modal-footer">
478                         <button type="submit" class="btn btn-default">Save</button>
479                         <a href="#" data-dismiss="modal" class="cancel">Cancel</a>
480                     </div>
481                 </div>
482             </form>
483         </div>
484     </div>
485 [% END %]
486
487 [% MACRO jsinclude BLOCK %]
488     [% INCLUDE 'datatables.inc' %]
489     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
490     [% IF print %]
491         <script>
492             $( document ).ready(function() {
493                 window.print();
494                 window.onafterprint = function () {
495                     window.close();
496                 }
497                 setTimeout('window.close()', 1000); // Hack for Chrome < 63
498             });
499         </script>
500     [% END %]
501
502     [% IF op == 'view' %]
503         [% Asset.js("lib/hc-sticky.js") | $raw %]
504     [% END %]
505     <script>
506         var MSG_NO_ITEM_SELECTED = _("Nothing is selected.");
507         var MSG_REMOVE_FROM_LIST = _("Are you sure you want to remove these items from the list?");
508         var MSG_CONFIRM_DELETE_LIST = _("Are you sure you want to remove this list?");
509
510         [% IF op == 'list' %]
511             $(document).ready(function(){
512                 var public = [% public | html %];
513
514                 var dtListResults = $("#listresultst").dataTable($.extend(true, {}, dataTablesDefaults, {
515                 "aaSorting": [[ 5, "asc" ]],
516                     'bServerSide': true,
517                     'sAjaxSource': "/cgi-bin/koha/svc/virtualshelves/search",
518                     'fnServerData': function(sSource, aoData, fnCallback) {
519                         aoData.push({
520                             'name': 'public',
521                             'value': public,
522                         },{
523                             'name': 'shelfname',
524                             'value': $("#searchshelfname_filter").val(),
525                         },{
526                             'name': 'owner',
527                             'value': $("#searchowner_filter").val(),
528                         },{
529                             'name': 'sortby',
530                             'value': $("#searchsortby_filter").val(),
531                         },{
532                             'name': 'template_path',
533                             'value': 'virtualshelves/tables/shelves_results.tt',
534                         },{
535                             'name': 'shelfname_sorton',
536                             'value': 'vs.shelfname',
537                         },{
538                             'name': 'is_shared_sorton',
539                             'value': 'vs.public',
540                         },{
541                             'name': 'owner_sorton',
542                             'value': 'vs.owner',
543                         },{
544                             'name': 'sortby_sorton',
545                             'value': 'vs.sortfield',
546                         },{
547                             'name': 'created_on_sorton',
548                             'value': 'vs.created_on',
549                         },{
550                             'name': 'modification_time_sorton',
551                             'value': 'vs.lastmodified',
552                         });
553                         $.ajax({
554                             'dataType': 'json',
555                             'type': 'POST',
556                             'url': sSource,
557                             'data': aoData,
558                             'success': function(json){
559                                 fnCallback(json);
560                             }
561                         });
562                     },
563                     'aoColumns':[
564                         { 'mDataProp': 'dt_public' },
565                         { 'mDataProp': 'dt_shelfname' },
566                         { 'mDataProp': 'dt_count' },
567                         { 'mDataProp': 'dt_is_shared' },
568                         { 'mDataProp': 'dt_owner' },
569                         { 'mDataProp': 'dt_sortby' },
570                         { 'mDataProp': 'dt_created_on' },
571                         { 'mDataProp': 'dt_modification_time' },
572                         { 'mDataProp': 'dt_action', 'bSortable': false, 'sClass': 'actions' }
573                     ],
574                     "aoColumnDefs": [
575                         { "bVisible": false, "aTargets": [ 'NoVisible' ] }
576                     ],
577                     'bAutoWidth': false,
578                     'sPaginationType': 'full_numbers',
579                     'bFilter': false,
580                     "bProcessing": true,
581                     "bSortCellsTop": true
582                 }));
583
584                 dtListResults.fnAddFilters("filter", 750);
585
586                 var tabs = $("#tabs").tabs({
587                     [% IF public %]
588                         active: 1,
589                     [% ELSE %]
590                         active: 0,
591                     [% END %]
592                     activate: function(e, ui) {
593                         var active = tabs.tabs("option", "active" );
594                         if ( active == 0 ) {
595                             public = 0;
596                             dtListResults.fnDraw();
597                         } else if ( active == 1 ) {
598                             public = 1;
599                             dtListResults.fnDraw();
600                         }
601                     }
602                 });
603                 $("body").on("click", ".deleteshelf", function(){
604                     return confirmDelete(MSG_CONFIRM_DELETE_LIST);
605                 });
606             });
607         [% END %]
608
609         [% IF shelf AND op == 'view' %]
610             var Sticky;
611             $(document).ready(function(){
612                 Sticky = $("#searchheader");
613                 Sticky.hcSticky({
614                     stickTo: "#listform",
615                     stickyClass: "floating"
616                 });
617                 $("span.clearall").html("<a id=\"CheckNone\" href=\"/cgi-bin/koha/shelves.pl\"><i class=\"fa fa-remove\"></i>"+_(" Clear all")+"<\/a>");
618                 $("span.checkall").html("<a id=\"CheckAll\" href=\"/cgi-bin/koha/shelves.pl\"><i class=\"fa fa-check\"></i>"+_(" Select all")+"<\/a>");
619                 $("#CheckAll").click(function(e){
620                     e.preventDefault();
621                     $(".selection").each(function(){
622                         $(this).prop("checked", true);
623                     });
624                 });
625
626                 $("#CheckNone").click(function(e){
627                     e.preventDefault();
628                     $(".selection").each(function(){
629                         $(this).prop("checked", false);
630                     });
631                 });
632                 $(".placehold").on("click",function(e){
633                     placeHold();
634                     e.preventDefault();
635                 });
636                 $(".addtocart").show();
637                 var param1 = "| <label for=\"addto\">"+_("Add to:")+"<\/label><select name=\"addto\" id=\"addto\"><option value=\"\"><\/option>";
638                 [% IF (Koha.Preference("intranetbookbag")) %]
639                      param1 += "<option value=\"addtocart\">"+_("Cart")+"<\/option>";
640                 [% END %]
641                 [% IF Koha.Preference('virtualshelves') %]
642                     [% IF add_to_some_private_shelves.count %]
643                         param1 += "<optgroup label=\""+_("Your lists:")+"\">";
644                         [% SET number_of_private_shelves = 0 %]
645                         [% FOREACH s IN add_to_some_private_shelves %]
646                             [% IF shelfnumber != s.shelfnumber %]
647                                 param1 += "<option id=\"s[% s.shelfnumber | html %]\" value=\"addtolist\">[% s.shelfname | html %]<\/option>";
648                                 [% SET number_of_private_shelves = number_of_private_shelves + 1 %]
649                                 [% IF number_of_private_shelves == 10 %][% LAST %][% END %]
650                             [% END %]
651                         [% END %]
652                         param1 += "<\/optgroup>";
653                     [% END %]
654                     [% IF add_to_some_public_shelves.count %]
655                         param1 += "<optgroup label=\""+_("Public lists:")+"\">";
656                         [% SET number_of_public_shelves = 0 %]
657                         [% FOREACH s IN add_to_some_public_shelves %]
658                             [% IF shelfnumber != s.shelfnumber %]
659                                 param1 += "<option id=\"s[% s.shelfnumber | html %]\" value=\"addtolist\">[% s.shelfname | html %]<\/option>";
660                                 [% SET number_of_public_shelves = number_of_public_shelves + 1 %]
661                                 [% IF number_of_public_shelves == 10 %][% LAST %][% END %]
662                             [% END %]
663                         [% END %]
664                         param1 += "<\/optgroup>";
665                     [% END %]
666                     [% IF add_to_some_private_shelves.count > 10 or add_to_some_public_shelves.count > 10 %]
667                         param1 += "<option value=\"morelists\">[ "+_("More lists")+" ]<\/option>";
668                     [% END %]
669                     param1 +="<option value=\"newlist\">"+_("[ New list ]")+"<\/option>"
670                 [% END %]
671                 param1 += "<\/select> <button id=\"cartsubmit\" type=\"submit\" class=\"btn btn-default btn-xs\">"+_("Save")+"</button>";
672                 $("span.addto").html(param1);
673                 $("#cartsubmit").on("click",function(e){
674                     cartList();
675                     e.preventDefault();
676                 });
677                 $("#addto").change(function(){
678                     cartList();
679                 });
680                 $(".addto").find("input:submit").click(function(e){
681                     e.preventDefault();
682                     cartList();
683                 });
684                 $("#selection_ops").show();
685                 $(".merge-items").on("click",function(e){
686                     e.preventDefault();
687                     MergeItems();
688                 });
689                 $("#listform").on("submit",function(e){
690
691                 });
692                 $(".list-remove").on("click",function(e){
693                     if($(".selection").filter(":checked").length > 0){
694                         return confirm(MSG_REMOVE_FROM_LIST);
695                     } else {
696                         alert(MSG_NO_ITEM_SELECTED);
697                         e.preventDefault();
698                     }
699                 });
700                 $("#addToList").on("shown.bs.modal", function(e){
701                     $("#barcodes").focus();
702                 });
703             });
704         [% END %]
705
706         [% IF shelf AND op == 'edit_form' %]
707             $(document).ready(function(){
708                 AdjustRemark();
709             });
710         [% END %]
711
712         /**
713          * This function checks if the adequate number of records are checked for merging
714          */
715         function MergeItems() {
716             var checkboxes = $("input:checkbox:checked");
717             if (checkboxes.length < 2) {
718                 alert(_("At least two records must be selected for merging."));
719             } else {
720                 var params = [];
721                 $(checkboxes).each(function() {
722                     params.push('biblionumber=' + $(this).val());
723                 });
724                 var url = '/cgi-bin/koha/cataloguing/merge.pl?' + params.join('&');
725                 location.href = url;
726             }
727             return false;
728         }
729
730         /**
731          * This function checks all checkboxes if all are empty,
732          * or unchecks all if any already checked.
733          */
734         function CheckAll(){
735             var checkboxes = document.getElementsByTagName('input');
736             var nbCheckbox = checkboxes.length;
737             var check = areAllChecked();
738             for(var i=0;i<nbCheckbox;i++){
739                 if(checkboxes[i].getAttribute('type') == "checkbox" ){
740                     checkboxes[i].checked = (check) ? 0 : 1;
741                 }
742             }
743         }
744         /**
745          * This function returns true if ALL checkboxes are checked
746          */
747         function areAllChecked(){
748             var checkboxes = document.getElementsByTagName('input');
749             var nbCheckbox = checkboxes.length;
750             for(var i=0;i<nbCheckbox;i++){
751                 if(checkboxes[i].getAttribute('type') == "checkbox" ){
752                     if(checkboxes[i].checked == 0){
753                         return false;
754                     }
755                 }
756             }
757             return true;
758         }
759
760         function placeHold () {
761             var checkedItems = $(".selection:checked");
762             if ($(checkedItems).size() == 0) {
763                 alert(MSG_NO_ITEM_SELECTED);
764                 return false;
765             }
766             $(checkedItems).each(function() {
767                 var bib_param = $("<input>").attr("type", "hidden").attr("name", "biblionumber").val($(this).val());
768                 $('#hold_form').append(bib_param);
769             });
770             $("#hold_form").submit();
771             return false;
772         }
773
774         function cartList(){
775             var checkboxes = $("#searchresults").find(":checkbox");
776             var vshelf = vShelfAdd(checkboxes);
777             if($("#addto").find("option:selected").attr("value") == "addtolist"){
778                 var shelfnumber = $("#addto").find("option:selected").attr("id").replace("s","");
779                 if (vshelf) {
780                      openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?shelfnumber='+shelfnumber+'&confirm=1&' + vshelf,'popup',500,500);
781                 }
782                 return false;
783             } else if($("#addto").find("option:selected").attr("value") == "newlist"){
784                 if (vshelf) {
785                     openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?newshelf=1&' + vshelf,'popup',500,500);
786                 }
787                 return false;
788             } else if($("#addto").find("option:selected").attr("value") == "morelists"){
789                 if (vshelf) {
790                     openWindow('/cgi-bin/koha/virtualshelves/addbybiblionumber.pl?' + vshelf,'popup',500,500);
791                 }
792                 return false;
793             }
794             if($("#addto").find("option:selected").attr("value") == "addtocart"){
795                 addMultiple(checkboxes);
796                 return false;
797             }
798         }
799
800         function AdjustRemark() {
801             var public = $("#public").val();
802             var perms = $("#allow_changes_from").val();
803
804             if( perms < 2 ) {
805                 $("#anyone_remark").hide();
806                 $("#staff_remark").hide();
807             } else if( public==0 ) {
808                 // If we move to Private (without shares), show Anyone remark
809                 // Note: the number of shares is not tested real-time
810                 [% IF !shelf.is_shared %]
811                     if( perms== 2) {
812                         $("#anyone_remark").show();
813                         $("#staff_remark").hide();
814                     } else if ( perms==3 ) {
815                         $("#anyone_remark").hide();
816                         $("#staff_remark").show();
817                     }
818                 [% ELSE %]
819                     $("#anyone_remark").hide();
820                     $("#staff_remark").hide();
821                 [% END %]
822             } else { // public==1
823                 $("#anyone_remark").hide();
824                 $("#staff_remark").hide();
825             }
826         }
827         [% IF op == 'view' %]
828
829             function sendList(){
830                 open(CGIBIN+'virtualshelves/sendshelf.pl?shelfid=[% shelf.shelfnumber | html %]','win_form','scrollbars=no,resizable=no,height=300,width=450,top=50,left=100');
831              }
832
833              $(document).ready(function() {
834                 $("#sendlist").click(function(){
835                     sendList();
836                     return false;
837                 });
838                 $("#deleteshelf").click(function(e){
839                     if(confirm(_("Are you sure you want to delete this list?"))){
840                         return true;
841                     } else {
842                         e.preventDefault();
843                     }
844                 });
845              });
846
847         [% END %]
848     </script>
849 [% END %]
850
851 [% INCLUDE 'intranet-bottom.inc' %]