Lines 322-328
function recall_item(itemnumber) {
Link Here
|
322 |
[% IF ( SpineLabelShowPrintOnBibDetails ) %]<th>Spine label</th>[% END %] |
322 |
[% IF ( SpineLabelShowPrintOnBibDetails ) %]<th>Spine label</th>[% END %] |
323 |
[% IF ( hostrecords ) %]<th>Host records</th>[% END %] |
323 |
[% IF ( hostrecords ) %]<th>Host records</th>[% END %] |
324 |
[% IF ( analyze ) %]<th>Used in</th><th></th>[% END %] |
324 |
[% IF ( analyze ) %]<th>Used in</th><th></th>[% END %] |
325 |
[% IF ( items_checked_out ) %]<th>Recall</th>[% END %] |
|
|
326 |
</tr> |
325 |
</tr> |
327 |
[% FOREACH itemloo IN itemloop %] |
326 |
[% FOREACH itemloo IN itemloop %] |
328 |
<tr> |
327 |
<tr> |
Lines 341-358
function recall_item(itemnumber) {
Link Here
|
341 |
<td class="status"> |
340 |
<td class="status"> |
342 |
|
341 |
|
343 |
[% IF ( itemloo.datedue ) %] |
342 |
[% IF ( itemloo.datedue ) %] |
344 |
<span class="datedue">Checked out |
343 |
<span class="datedue">Checked out |
345 |
[% UNLESS ( itemloo.NOTSAMEBRANCH ) %] |
344 |
[% UNLESS ( itemloo.NOTSAMEBRANCH ) %] |
346 |
to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% itemloo.borrowernumber %]"> |
345 |
to <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% itemloo.borrowernumber %]"> |
347 |
[% IF ( itemloo.hidepatronname ) %] |
346 |
[% IF ( itemloo.hidepatronname ) %] |
348 |
[% itemloo.cardnumber %] |
347 |
[% itemloo.cardnumber %] |
349 |
[% ELSE %] |
348 |
[% ELSE %] |
350 |
[% itemloo.firstname %] [% itemloo.surname %] |
349 |
[% itemloo.firstname %] [% itemloo.surname %] |
351 |
[% END %] |
350 |
[% END %] |
352 |
</a> |
351 |
</a> |
353 |
[% END %] |
352 |
[% END %] |
354 |
: due [% itemloo.datedue %] |
353 |
: due [% itemloo.datedue %] |
355 |
</span> |
354 |
<input type="button" id="recall_[% itemloo.itemnumber %]" name="recall_[% itemloo.itemnumber %]" value="Recall" onclick="recall_item([% itemloo.itemnumber %]);" /> |
|
|
355 |
</span> |
356 |
|
356 |
[% ELSIF ( itemloo.transfertwhen ) %] |
357 |
[% ELSIF ( itemloo.transfertwhen ) %] |
357 |
In transit from [% itemloo.transfertfrom %], |
358 |
In transit from [% itemloo.transfertfrom %], |
358 |
to [% itemloo.transfertto %], since [% itemloo.transfertwhen %] |
359 |
to [% itemloo.transfertto %], since [% itemloo.transfertwhen %] |
Lines 459-472
function recall_item(itemnumber) {
Link Here
|
459 |
<td><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?hostbiblionumber=[% itemloo.biblionumber %]&hostitemnumber=[% itemloo.itemnumber %]">Create analytics</a></td> |
460 |
<td><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?hostbiblionumber=[% itemloo.biblionumber %]&hostitemnumber=[% itemloo.itemnumber %]">Create analytics</a></td> |
460 |
[% END %] |
461 |
[% END %] |
461 |
|
462 |
|
462 |
[% IF ( items_checked_out ) %] |
|
|
463 |
<td> |
464 |
[% IF ( itemloo.onloan ) %] |
465 |
<input type="button" id="recall_[% itemloo.itemnumber %]" name="recall_[% itemloo.itemnumber %]" value="Recall" onclick="recall_item([% itemloo.itemnumber %]);" /> |
466 |
[% END %] |
467 |
</td> |
468 |
[% END %] |
469 |
|
470 |
</tr> |
463 |
</tr> |
471 |
[% END %] |
464 |
[% END %] |
472 |
</table> |
465 |
</table> |
473 |
- |
|
|