Lines 5-11
Link Here
|
5 |
[% ELSE %] |
5 |
[% ELSE %] |
6 |
<title>Koha › Circulation › Holds › Confirm holds</title> |
6 |
<title>Koha › Circulation › Holds › Confirm holds</title> |
7 |
[% END %] |
7 |
[% END %] |
|
|
8 |
<link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" /> |
8 |
[% INCLUDE 'doc-head-close.inc' %] |
9 |
[% INCLUDE 'doc-head-close.inc' %] |
|
|
10 |
[% INCLUDE 'datatables.inc' %] |
9 |
[% INCLUDE 'calendar.inc' %] |
11 |
[% INCLUDE 'calendar.inc' %] |
10 |
<script type="text/javascript"> |
12 |
<script type="text/javascript"> |
11 |
// <![CDATA[ |
13 |
// <![CDATA[ |
Lines 24-29
$(document).ready(function() {
Link Here
|
24 |
[% IF AutoResumeSuspendedHolds %] |
26 |
[% IF AutoResumeSuspendedHolds %] |
25 |
$(".suspend_until_datepicker, .datepickerfrom, .datepickerto").datepicker("option", "minDate", 1); |
27 |
$(".suspend_until_datepicker, .datepickerfrom, .datepickerto").datepicker("option", "minDate", 1); |
26 |
[% END %] |
28 |
[% END %] |
|
|
29 |
|
30 |
var my_table = $("#requestspecific").dataTable($.extend(true, {}, dataTablesDefaults, { |
31 |
'bPaginate': false, |
32 |
'bInfo': false, |
33 |
"bAutoWidth": false, |
34 |
})); |
35 |
|
36 |
//Override fieldset styling for dataTables search box |
37 |
$("div.top.pager").css("margin-left","1em"); |
38 |
$(".dataTables_filter label").css({ |
39 |
"width":"auto", |
40 |
"margin-right":"0em" |
41 |
}); |
42 |
|
27 |
}); |
43 |
}); |
28 |
|
44 |
|
29 |
function check() { |
45 |
function check() { |
Lines 395-415
function checkMultiHold() {
Link Here
|
395 |
|
411 |
|
396 |
<table id="requestspecific"> |
412 |
<table id="requestspecific"> |
397 |
<caption>Place a hold on a specific item</caption> |
413 |
<caption>Place a hold on a specific item</caption> |
|
|
414 |
<thead> |
398 |
<tr> |
415 |
<tr> |
399 |
<th>Hold</th> |
416 |
<th>Hold</th> |
400 |
[% IF ( item_level_itypes ) %] |
417 |
[% IF ( item_level_itypes ) %] |
401 |
<th>Item type</th> |
418 |
<th>Item type</th> |
402 |
[% END %] |
419 |
[% END %] |
403 |
<th>Barcode</th> |
420 |
<th>Barcode</th> |
404 |
<th>Home library</th> |
421 |
<th>Home library</th> |
405 |
<th>Last location</th> |
422 |
<th>Last location</th> |
406 |
<th>Call no.</th> |
423 |
<th>Call no.</th> |
407 |
<th>Copy number</th> |
424 |
<th>Copy number</th> |
408 |
[% IF itemdata_enumchron %] |
425 |
[% IF itemdata_enumchron %] |
409 |
<th>Vol no.</th> |
426 |
<th>Vol no.</th> |
410 |
[% END %] |
427 |
[% END %] |
411 |
<th>Information</th> |
428 |
<th>Information</th> |
412 |
</tr> |
429 |
</tr> |
|
|
430 |
</thead> |
413 |
[% FOREACH itemloo IN bibitemloo.itemloop %] |
431 |
[% FOREACH itemloo IN bibitemloo.itemloop %] |
414 |
[% UNLESS ( itemloo.hide ) %] |
432 |
[% UNLESS ( itemloo.hide ) %] |
415 |
<tr class="[% itemloo.backgroundcolor %]"> |
433 |
<tr class="[% itemloo.backgroundcolor %]"> |
416 |
- |
|
|