Lines 456-461
Link Here
|
456 |
</div> |
456 |
</div> |
457 |
</div> |
457 |
</div> |
458 |
[% END %] |
458 |
[% END %] |
|
|
459 |
|
460 |
<!-- item has been recalled --> |
461 |
[% IF ( recalled ) %] |
462 |
<!-- recalled --> |
463 |
<div id="recalled" class="modal fade audio-alert-action"> |
464 |
<div class="modal-dialog"> |
465 |
<div class="modal-content"> |
466 |
<form method="post" action="/cgi-bin/koha/circ/returns.pl" class="confirm"> |
467 |
<div class="modal-header"> |
468 |
<h3>Recall found: <br/> |
469 |
<a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %] </a> |
470 |
</h3> |
471 |
</div> |
472 |
|
473 |
<div class="modal-body"> |
474 |
[% IF ( recallnotes ) %] |
475 |
<h4>Notes: [% recall.recallnotes %]</h4> |
476 |
[% END %] |
477 |
<h5>This item has been recalled by:</h5> |
478 |
<li> |
479 |
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.surname %], [% patron.firstname %]</a> |
480 |
([% patron.cardnumber %]) |
481 |
<span class="patron-category"> - [% patron.category.description %]</span> |
482 |
</li> |
483 |
|
484 |
[% INCLUDE display_holdpatron_address %] |
485 |
|
486 |
[% IF ( patron.phone ) %] |
487 |
<li>[% patron.phone %]</li> |
488 |
[% END %] |
489 |
|
490 |
[% IF ( patron.email ) %] |
491 |
<li><a id="boremail" href="mailto:[% patron.email %]">[% patron.email %]</a></li> |
492 |
[% END %] |
493 |
|
494 |
[% IF ( patron.debarred ) %] |
495 |
<li class="error">Patron is RESTRICTED</li> |
496 |
[% END %] |
497 |
|
498 |
[% IF ( patron.gonenoaddress ) %] |
499 |
<li class="error">Patron's address is in doubt</li> |
500 |
[% END %] |
501 |
|
502 |
<h4><strong>Wait for pickup at</strong> [% recall.branch.branchname %]</h4> |
503 |
|
504 |
<input type="hidden" name="itemnumber" value="[% recall.itemnumber %]" /> |
505 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
506 |
<input type="hidden" name="biblionumber" value="[% itembiblionumber %]" /> |
507 |
<input type="hidden" name="recall_id" value="[% recall.recall_id %]" /> |
508 |
<input type="hidden" name="diffBranch" value="[% recall.branchcode %]" /> |
509 |
</div> |
510 |
|
511 |
<div class="modal-footer"> |
512 |
<button type="submit" class="btn btn-default approve"> |
513 |
<i class="fa fa-check"></i> Confirm recall waiting |
514 |
</button> |
515 |
|
516 |
<button data-dismiss="modal" aria-hidden="true" type="submit" class="btn btn-danger deny" onclick="$('#barcode').focus(); return false;"> |
517 |
<i class="fa fa-times"></i> Ignore |
518 |
</button> |
519 |
</div> |
520 |
</form> |
521 |
</div> |
522 |
</div> |
523 |
</div> |
524 |
[% END %] |
459 |
[% END %] |
525 |
[% END %] |
460 |
|
526 |
|
461 |
[% IF ( errmsgloop ) %] |
527 |
[% IF ( errmsgloop ) %] |
462 |
- |
|
|