Lines 1-3
Link Here
|
|
|
1 |
[% USE ItemTypes %] |
2 |
[% USE AuthorisedValues %] |
1 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
2 |
<title>Koha › Circulation › Transfers</title> |
4 |
<title>Koha › Circulation › Transfers</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
Lines 110-116
Link Here
|
110 |
<li>Please return item to home library: [% errmsgloo.msg %]</li> |
112 |
<li>Please return item to home library: [% errmsgloo.msg %]</li> |
111 |
[% END %] |
113 |
[% END %] |
112 |
[% IF ( errmsgloo.errnotallowed ) %] |
114 |
[% IF ( errmsgloo.errnotallowed ) %] |
113 |
<li>You cannot transfer items of [% errmsgloo.codeType %] <b>[% errmsgloo.code %]</b> to <b>[% errmsgloo.tbr %]</b></li> |
115 |
<li>Transfer is not allowed for: |
|
|
116 |
<ol> |
117 |
[% IF ( errmsgloo.codeType ) == 'itemtype' %] |
118 |
<li>Item type: <b>[% ItemTypes.GetDescription( errmsgloo.code ) %]</b></li> |
119 |
[% ELSE %] |
120 |
<li>Collection code: <b>[% AuthorisedValues.GetByCode( 'CCODE', errmsgloo.code ) %]</b></li> |
121 |
[% END %] |
122 |
<li>Destination library: <b>[% errmsgloo.tbr %]</b></li> |
123 |
</ol> |
124 |
</li> |
114 |
[% END %] |
125 |
[% END %] |
115 |
[% IF ( errmsgloo.errdesteqholding ) %] |
126 |
[% IF ( errmsgloo.errdesteqholding ) %] |
116 |
<li>Item is already at destination library.</li> |
127 |
<li>Item is already at destination library.</li> |
Lines 164-186
Link Here
|
164 |
<table> |
175 |
<table> |
165 |
<caption>Transferred items</caption> |
176 |
<caption>Transferred items</caption> |
166 |
<tr> |
177 |
<tr> |
167 |
<th>Title</th> |
178 |
<th id="title">Title</th> |
168 |
<th>Author</th> |
179 |
<th id="author">Author</th> |
169 |
<th>Barcode</th> |
180 |
<th id="barcode">Barcode</th> |
170 |
<th>Shelving location</th> |
181 |
<th id="location">Shelving location</th> |
171 |
<th>Call number</th> |
182 |
<th id="itemcallnumber">Call number</th> |
172 |
<th>Type</th> |
183 |
<th id="itemtype">Item type</th> |
173 |
<th>To</th> |
184 |
<th id="ccode">Collection code</th> |
|
|
185 |
<th id="destination">Destination</th> |
174 |
</tr> |
186 |
</tr> |
175 |
[% FOREACH trsfitemloo IN trsfitemloop %] |
187 |
[% FOREACH trsfitemloo IN trsfitemloop %] |
176 |
<tr> |
188 |
<tr> |
177 |
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% trsfitemloo.biblionumber %]">[% trsfitemloo.title |html %]</a></td> |
189 |
<td class="title"><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% trsfitemloo.biblionumber %]">[% trsfitemloo.title |html %]</a></td> |
178 |
<td>[% trsfitemloo.author %]</td> |
190 |
<td class="author">[% trsfitemloo.author %]</td> |
179 |
<td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% trsfitemloo.biblionumber %]&itemnumber=[% trsfitemloo.itemnumber %]#item[% trsfitemloo.itemnumber %]">[% trsfitemloo.barcode %]</a></td> |
191 |
<td class="barcode"><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% trsfitemloo.biblionumber %]&itemnumber=[% trsfitemloo.itemnumber %]#item[% trsfitemloo.itemnumber %]">[% trsfitemloo.barcode %]</a></td> |
180 |
<td>[% trsfitemloo.location %]</td> |
192 |
<td class="location">[% trsfitemloo.location %]</td> |
181 |
<td>[% trsfitemloo.itemcallnumber %]</td> |
193 |
<td class="itemcallnumber">[% trsfitemloo.itemcallnumber %]</td> |
182 |
<td>[% trsfitemloo.ccode %]</td> |
194 |
<td class="itemtype">[% ItemTypes.GetDescription( trsfitemloo.itemtype ) %]</td> |
183 |
<td>[% trsfitemloo.tobrname %]</td> |
195 |
<td class="ccode">[% AuthorisedValues.GetByCode( 'CCODE', trsfitemloo.ccode ) %]</td> |
|
|
196 |
<td class="destination">[% trsfitemloo.tobrname %]</td> |
184 |
</tr> |
197 |
</tr> |
185 |
[% END %] |
198 |
[% END %] |
186 |
</table> |
199 |
</table> |
187 |
- |
|
|