Lines 813-838
Link Here
|
813 |
<table id="requestspecific"> |
813 |
<table id="requestspecific"> |
814 |
<thead> |
814 |
<thead> |
815 |
<tr> |
815 |
<tr> |
816 |
<th>Hold</th> |
816 |
<th id="hold" data-colname="hold">Hold</th> |
817 |
<th>Allowed pickup locations</th> |
817 |
<th id="allowed_pickup_locations" data-colname="allowed_pickup_locations">Allowed pickup locations</th> |
818 |
[% IF Koha.Preference('item-level_itypes') %] |
818 |
[% IF Koha.Preference('item-level_itypes') %] |
819 |
<th>Item type</th> |
819 |
<th id="item_type" data-colname="item_type">Item type</th> |
820 |
[% END %] |
820 |
[% END %] |
821 |
<th>Barcode</th> |
821 |
<th id="barcode" data-colname="barcode">Barcode</th> |
822 |
[% IF Koha.Preference('EnableItemGroupHolds') && biblio_info.object.item_groups.count %] |
822 |
[% IF Koha.Preference('EnableItemGroupHolds') && biblio_info.object.item_groups.count %] |
823 |
<th>Item group</th> |
823 |
<th id="item_group" data-colname="item_group">Item group</th> |
824 |
[% END %] |
824 |
[% END %] |
825 |
<th>Home library</th> |
825 |
<th id="home_library" data-colname="home_library">Home library</th> |
826 |
<th>Last location</th> |
826 |
<th id="last_location" data-colname="last_location">Last location</th> |
827 |
[% IF itemdata_ccode %] |
827 |
[% IF itemdata_ccode %] |
828 |
<th>Collection</th> |
828 |
<th id="collection" data-colname="collection">Collection</th> |
829 |
[% END %] |
829 |
[% END %] |
830 |
<th>Call number</th> |
830 |
<th id="call_number" data-colname="call_number">Call number</th> |
831 |
<th>Copy number</th> |
831 |
<th id="copy_number" data-colname="copy_number">Copy number</th> |
832 |
[% IF itemdata_enumchron %] |
832 |
[% IF itemdata_enumchron %] |
833 |
<th>Vol no.</th> |
833 |
<th id="volume_number" data-colname="volume_number">Vol no.</th> |
834 |
[% END %] |
834 |
[% END %] |
835 |
<th>Information</th> |
835 |
<th id="information" data-colname="information">Information</th> |
836 |
</tr> |
836 |
</tr> |
837 |
</thead> |
837 |
</thead> |
838 |
<tbody> |
838 |
<tbody> |
Lines 1509-1517
Link Here
|
1509 |
}); |
1509 |
}); |
1510 |
[% END %] |
1510 |
[% END %] |
1511 |
|
1511 |
|
1512 |
var my_table = $("#requestspecific").kohaTable({ |
1512 |
$(document).ready(function () { |
1513 |
paging: false, |
1513 |
requestspecific_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'requests', 'requestspecific_table', 'json' ) | $raw %]; |
1514 |
dom: '<"top pager"ilf>t', |
1514 |
$("#requestspecific").kohaTable({ |
|
|
1515 |
"bPaginate":false, |
1516 |
"bKohaColumnsUseNames": true, |
1517 |
}, requestspecific_table_settings); |
1515 |
}); |
1518 |
}); |
1516 |
|
1519 |
|
1517 |
$("#club-request-form").on("submit", function() { |
1520 |
$("#club-request-form").on("submit", function() { |
1518 |
- |
|
|