|
Lines 72-77
Link Here
|
| 72 |
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /> |
72 |
<input type="hidden" name="biblionumber" value="[% biblionumber | html %]" /> |
| 73 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" /> |
73 |
<input type="hidden" name="borrowernumber" value="[% borrowernumber | html %]" /> |
| 74 |
<input type="hidden" name="tobranchcd" value="[% tobranchcd | html %]" /> |
74 |
<input type="hidden" name="tobranchcd" value="[% tobranchcd | html %]" /> |
|
|
75 |
<input type="hidden" name="frombranchcd" value="[% tobranchcd | html %]" /> |
| 75 |
<input type="hidden" name="barcode" value="[% barcode | html %]" /> |
76 |
<input type="hidden" name="barcode" value="[% barcode | html %]" /> |
| 76 |
<input type="hidden" name="request" value="KillReserved" /> |
77 |
<input type="hidden" name="request" value="KillReserved" /> |
| 77 |
<input type="submit" value="Cancel" /> |
78 |
<input type="submit" value="Cancel" /> |
|
Lines 128-133
Link Here
|
| 128 |
[% ELSE %] |
129 |
[% ELSE %] |
| 129 |
<li>Collection: <b>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) | html %]</b></li> |
130 |
<li>Collection: <b>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) | html %]</b></li> |
| 130 |
[% END %] |
131 |
[% END %] |
|
|
132 |
<li>Originating library: <b>[% Branches.GetName( errmsgloo.fbr ) | html %]</b></li> |
| 131 |
<li>Destination library: <b>[% Branches.GetName( errmsgloo.tbr ) | html %]</b></li> |
133 |
<li>Destination library: <b>[% Branches.GetName( errmsgloo.tbr ) | html %]</b></li> |
| 132 |
</ol> |
134 |
</ol> |
| 133 |
</li> |
135 |
</li> |
|
Lines 151-156
Link Here
|
| 151 |
<legend>Transfer</legend> |
153 |
<legend>Transfer</legend> |
| 152 |
<ol> |
154 |
<ol> |
| 153 |
<li> |
155 |
<li> |
|
|
156 |
<label for="frombranchcd">Originating library: </label> |
| 157 |
<select name="frombranchcd" id="frombranchcd"> |
| 158 |
<option value="current_holding">Item's holding branch</option> |
| 159 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => '', unfiltered => 1) %] |
| 160 |
</select> |
| 161 |
</li> |
| 162 |
<li> |
| 154 |
<label for="tobranchcd">Destination library: </label> |
163 |
<label for="tobranchcd">Destination library: </label> |
| 155 |
<select name="tobranchcd" id="tobranchcd"> |
164 |
<select name="tobranchcd" id="tobranchcd"> |
| 156 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => tobranchcd, unfiltered => 1) %] |
165 |
[% PROCESS options_for_libraries libraries => Branches.all( selected => tobranchcd, unfiltered => 1) %] |
|
Lines 182-187
Link Here
|
| 182 |
<th class="tf-itemcallnumber">Call number</th> |
191 |
<th class="tf-itemcallnumber">Call number</th> |
| 183 |
<th class="tf-itemtype">Item type</th> |
192 |
<th class="tf-itemtype">Item type</th> |
| 184 |
<th class="tf-ccode">Collection</th> |
193 |
<th class="tf-ccode">Collection</th> |
|
|
194 |
<th class="tf-origin">Origin</th> |
| 185 |
<th class="tf-destination">Destination</th> |
195 |
<th class="tf-destination">Destination</th> |
| 186 |
</tr> |
196 |
</tr> |
| 187 |
[% FOREACH trsfitemloo IN trsfitemloop %] |
197 |
[% FOREACH trsfitemloo IN trsfitemloop %] |
|
Lines 197-202
Link Here
|
| 197 |
<td class="tf-itemcallnumber">[% trsfitemloo.item.itemcallnumber | html %]</td> |
207 |
<td class="tf-itemcallnumber">[% trsfitemloo.item.itemcallnumber | html %]</td> |
| 198 |
<td class="tf-itemtype">[% ItemTypes.GetDescription( trsfitemloo.item.effective_itemtype ) | html %]</td> |
208 |
<td class="tf-itemtype">[% ItemTypes.GetDescription( trsfitemloo.item.effective_itemtype ) | html %]</td> |
| 199 |
<td class="tf-ccode">[% AuthorisedValues.GetByCode( 'CCODE', trsfitemloo.item.ccode ) | html %]</td> |
209 |
<td class="tf-ccode">[% AuthorisedValues.GetByCode( 'CCODE', trsfitemloo.item.ccode ) | html %]</td> |
|
|
210 |
<td class="tf-origin">[% Branches.GetName( trsfitemloo.frombrcd ) | html %]</td> |
| 200 |
<td class="tf-destination">[% Branches.GetName( trsfitemloo.tobrcd ) | html %]</td> |
211 |
<td class="tf-destination">[% Branches.GetName( trsfitemloo.tobrcd ) | html %]</td> |
| 201 |
</tr> |
212 |
</tr> |
| 202 |
[% END %] |
213 |
[% END %] |