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