Lines 595-601
Link Here
|
595 |
|
595 |
|
596 |
[% UNLESS ( multi_hold ) %] |
596 |
[% UNLESS ( multi_hold ) %] |
597 |
<li> |
597 |
<li> |
598 |
<label for="requestany">Hold next available item </label> |
598 |
<label for="requestany">Hold next available item: </label> |
599 |
[% IF force_hold_level == 'item' %] |
599 |
[% IF force_hold_level == 'item' %] |
600 |
<input type="checkbox" id="requestany" name="request" disabled="true" /> |
600 |
<input type="checkbox" id="requestany" name="request" disabled="true" /> |
601 |
[% ELSIF force_hold_level == 'record' %] |
601 |
[% ELSIF force_hold_level == 'record' %] |
Lines 609-615
Link Here
|
609 |
|
609 |
|
610 |
[% IF remaining_holds_for_record > 1 %] |
610 |
[% IF remaining_holds_for_record > 1 %] |
611 |
<li> |
611 |
<li> |
612 |
<label for="holds_to_place_count">Holds to place (count)</label> |
612 |
<label for="holds_to_place_count">Holds to place (count): </label> |
613 |
<input type="text" inputmode="numeric" pattern="[0-9]*" id="holds_to_place_count" name="holds_to_place_count" maxlength="[% remaining_holds_for_record | html %]" value="1" /> |
613 |
<input type="text" inputmode="numeric" pattern="[0-9]*" id="holds_to_place_count" name="holds_to_place_count" maxlength="[% remaining_holds_for_record | html %]" value="1" /> |
614 |
</li> |
614 |
</li> |
615 |
[% ELSE %] |
615 |
[% ELSE %] |
Lines 622-627
Link Here
|
622 |
<input name="non_priority" id="non_priority" type="checkbox" /> |
622 |
<input name="non_priority" id="non_priority" type="checkbox" /> |
623 |
<span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span> |
623 |
<span class="hint">A non priority hold doesn't prevent a current checkout from renewing</span> |
624 |
</li> |
624 |
</li> |
|
|
625 |
|
626 |
<li id="hold_group_list_item"> |
627 |
<label for="hold_group">Treat as hold group: </label> |
628 |
<input name="hold_group" id="hold_group" type="checkbox" /> |
629 |
<span class="hint">Place a hold on the next available title from this group</span> |
630 |
</li> |
625 |
</ol> |
631 |
</ol> |
626 |
|
632 |
|
627 |
[% UNLESS ( multi_hold ) %] |
633 |
[% UNLESS ( multi_hold ) %] |
Lines 696-704
Link Here
|
696 |
Hold must be record level |
702 |
Hold must be record level |
697 |
</span> |
703 |
</span> |
698 |
[% ELSIF ( itemloo.available ) %] |
704 |
[% ELSIF ( itemloo.available ) %] |
699 |
<input type="radio" name="checkitem" value="[% itemloo.itemnumber | html %]" /> |
705 |
<input type="checkbox" name="checkitem" value="[% itemloo.itemnumber | html %]" /> |
700 |
[% ELSIF ( itemloo.override ) %] |
706 |
[% ELSIF ( itemloo.override ) %] |
701 |
<input type="radio" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> |
707 |
<input type="checkbox" name="checkitem" class="needsoverride" value="[% itemloo.itemnumber | html %]" /> |
702 |
<i class="fa fa-exclamation-triangle fa-lg" style="color:gold" title="Requires override of hold policy"/></i> |
708 |
<i class="fa fa-exclamation-triangle fa-lg" style="color:gold" title="Requires override of hold policy"/></i> |
703 |
[% ELSE %] |
709 |
[% ELSE %] |
704 |
<span class="error"> |
710 |
<span class="error"> |
Lines 1221-1226
Link Here
|
1221 |
</div> |
1227 |
</div> |
1222 |
</div> |
1228 |
</div> |
1223 |
|
1229 |
|
|
|
1230 |
[% INCLUDE 'hold-group-modal.inc' %] |
1231 |
|
1224 |
[% MACRO jsinclude BLOCK %] |
1232 |
[% MACRO jsinclude BLOCK %] |
1225 |
[% INCLUDE 'datatables.inc' %] |
1233 |
[% INCLUDE 'datatables.inc' %] |
1226 |
[% INCLUDE 'calendar.inc' %] |
1234 |
[% INCLUDE 'calendar.inc' %] |
Lines 1228-1233
Link Here
|
1228 |
[% Asset.js("lib/hc-sticky.js") | $raw %] |
1236 |
[% Asset.js("lib/hc-sticky.js") | $raw %] |
1229 |
[% INCLUDE 'select2.inc' %] |
1237 |
[% INCLUDE 'select2.inc' %] |
1230 |
[% Asset.js("js/holds.js") | $raw%] |
1238 |
[% Asset.js("js/holds.js") | $raw%] |
|
|
1239 |
[% Asset.js("js/hold-group.js") | $raw %] |
1231 |
|
1240 |
|
1232 |
[% SET url_biblio_params = "biblionumber=" _ biblionumbers.join("&biblionumber=") %] |
1241 |
[% SET url_biblio_params = "biblionumber=" _ biblionumbers.join("&biblionumber=") %] |
1233 |
[% IF multi_hold %] |
1242 |
[% IF multi_hold %] |