Lines 4-14
Link Here
|
4 |
<table class="holds_table"> |
4 |
<table class="holds_table"> |
5 |
<tr> |
5 |
<tr> |
6 |
<th><input type="checkbox" class="select_hold_all"/></th> |
6 |
<th><input type="checkbox" class="select_hold_all"/></th> |
|
|
7 |
<th>Priority</th> |
7 |
[% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] |
8 |
[% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] |
8 |
<th>Priority</th> |
|
|
9 |
<th> </th> |
9 |
<th> </th> |
10 |
[% ELSE %] |
|
|
11 |
<th>Delete?</th> |
12 |
[% END %] |
10 |
[% END %] |
13 |
<th>Patron</th> |
11 |
<th>Patron</th> |
14 |
<th>Notes</th> |
12 |
<th>Notes</th> |
Lines 57-86
Link Here
|
57 |
<input type="hidden" name="reserve_id" value="[% hold.reserve_id | html %]" /> |
55 |
<input type="hidden" name="reserve_id" value="[% hold.reserve_id | html %]" /> |
58 |
<input type="hidden" name="borrowernumber" value="[% hold.borrowernumber | html %]" /> |
56 |
<input type="hidden" name="borrowernumber" value="[% hold.borrowernumber | html %]" /> |
59 |
<input type="hidden" name="biblionumber" value="[% hold.biblionumber | html %]" /> |
57 |
<input type="hidden" name="biblionumber" value="[% hold.biblionumber | html %]" /> |
60 |
[% IF Koha.Preference('HoldsSplitQueue') == "nothing" && !hold.found %] |
58 |
[% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] |
61 |
<select name="rank-request" class="rank-request" data-hold-id="[% hold.reserve_id | html %]"> |
59 |
[% IF Koha.Preference('HoldsSplitQueue') == "nothing" && !hold.found %] |
62 |
[% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] |
60 |
<select name="rank-request" class="rank-request" data-hold-id="[% hold.reserve_id | html %]"> |
63 |
[% PROCESS priority_dropdown %] |
61 |
[% IF ( CAN_user_reserveforothers_modify_holds_priority ) %] |
64 |
[% ELSE %] |
62 |
[% PROCESS priority_dropdown %] |
65 |
<option value="[% hold.priority | html %]" selected="selected">[% this_priority | html %]</option> |
|
|
66 |
[% END %] |
67 |
<option value="del">del</option> |
68 |
</select> |
69 |
[% ELSE %] |
70 |
<input type="hidden" name="rank-request" class="rank-request" value="[% hold.priority | html %]" data-hold-id="[% hold.reserve_id | html %]"> |
71 |
<select name="rank-request" class="rank-request" disabled="disabled" data-hold-id="[% hold.reserve_id | html %]"> |
72 |
[% IF ( hold.found ) %] |
73 |
[% IF ( hold.intransit ) %] |
74 |
<option value="T" selected="selected">In transit</option> |
75 |
[% ELSIF (hold.inprocessing) %] |
76 |
<option value="P" selected="selected">In processing</option> |
77 |
[% ELSE %] |
63 |
[% ELSE %] |
78 |
<option value="W" selected="selected">Waiting</option> |
64 |
<option value="[% hold.priority | html %]" selected="selected">[% this_priority | html %]</option> |
79 |
[% END %] |
65 |
[% END %] |
|
|
66 |
<option value="del">del</option> |
67 |
</select> |
80 |
[% ELSE %] |
68 |
[% ELSE %] |
81 |
<option value="[% hold.priority | html %]" selected="selected">[% this_priority | html %]</option> |
69 |
<input type="hidden" name="rank-request" class="rank-request" value="[% hold.priority | html %]" data-hold-id="[% hold.reserve_id | html %]"> |
|
|
70 |
<select name="rank-request" class="rank-request" disabled="disabled" data-hold-id="[% hold.reserve_id | html %]"> |
71 |
[% IF ( hold.found ) %] |
72 |
[% IF ( hold.intransit ) %] |
73 |
<option value="T" selected="selected">In transit</option> |
74 |
[% ELSIF (hold.inprocessing) %] |
75 |
<option value="P" selected="selected">In processing</option> |
76 |
[% ELSE %] |
77 |
<option value="W" selected="selected">Waiting</option> |
78 |
[% END %] |
79 |
[% ELSE %] |
80 |
<option value="[% hold.priority | html %]" selected="selected">[% this_priority | html %]</option> |
81 |
[% END %] |
82 |
</select> |
82 |
[% END %] |
83 |
[% END %] |
83 |
</select> |
84 |
[% ELSE %] |
|
|
85 |
<input type="hidden" name="rank-request" class="rank-request" value="[% hold.priority | html %]" data-hold-id="[% hold.reserve_id | html %]"> |
86 |
[% hold.priority | html %] |
84 |
[% END %] |
87 |
[% END %] |
85 |
</td> |
88 |
</td> |
86 |
[%- IF ( CAN_user_reserveforothers_modify_holds_priority ) -%] |
89 |
[%- IF ( CAN_user_reserveforothers_modify_holds_priority ) -%] |
87 |
- |
|
|