Lines 506-511
Link Here
|
506 |
</div> |
506 |
</div> |
507 |
</div> |
507 |
</div> |
508 |
[% END %] |
508 |
[% END %] |
|
|
509 |
|
510 |
<!-- item has been recalled --> |
511 |
[% IF ( recalled ) %] |
512 |
<!-- recalled --> |
513 |
<div id="recalled" class="modal fade audio-alert-action"> |
514 |
<div class="modal-dialog"> |
515 |
<div class="modal-content"> |
516 |
<form method="post" action="/cgi-bin/koha/circ/returns.pl" class="confirm"> |
517 |
<div class="modal-header"> |
518 |
<h3>Recall found: <br/> |
519 |
<a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %] </a> |
520 |
</h3> |
521 |
</div> |
522 |
|
523 |
<div class="modal-body"> |
524 |
[% IF ( recallnotes ) %] |
525 |
<h4>Notes: [% recall.recallnotes %]</h4> |
526 |
[% END %] |
527 |
<h5>This item has been recalled by:</h5> |
528 |
<li> |
529 |
<a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber %]">[% patron.surname %], [% patron.firstname %]</a> |
530 |
([% patron.cardnumber %]) |
531 |
<span class="patron-category"> - [% patron.category.description %]</span> |
532 |
</li> |
533 |
|
534 |
[% INCLUDE display_holdpatron_address %] |
535 |
|
536 |
[% IF ( patron.phone ) %] |
537 |
<li>[% patron.phone %]</li> |
538 |
[% END %] |
539 |
|
540 |
[% IF ( patron.email ) %] |
541 |
<li><a id="boremail" href="mailto:[% patron.email %]">[% patron.email %]</a></li> |
542 |
[% END %] |
543 |
|
544 |
[% IF ( patron.debarred ) %] |
545 |
<li class="error">Patron is RESTRICTED</li> |
546 |
[% END %] |
547 |
|
548 |
[% IF ( patron.gonenoaddress ) %] |
549 |
<li class="error">Patron's address is in doubt</li> |
550 |
[% END %] |
551 |
|
552 |
<h4><strong>Wait for pickup at</strong> [% recall.branch.branchname %]</h4> |
553 |
|
554 |
<input type="hidden" name="itemnumber" value="[% recall.itemnumber %]" /> |
555 |
<input type="hidden" name="borrowernumber" value="[% patron.borrowernumber %]" /> |
556 |
<input type="hidden" name="biblionumber" value="[% itembiblionumber %]" /> |
557 |
<input type="hidden" name="recall_id" value="[% recall.recall_id %]" /> |
558 |
<input type="hidden" name="diffBranch" value="[% recall.branchcode %]" /> |
559 |
</div> |
560 |
|
561 |
<div class="modal-footer"> |
562 |
<button type="submit" class="btn btn-default approve"> |
563 |
<i class="fa fa-check"></i> Confirm recall waiting |
564 |
</button> |
565 |
|
566 |
<button data-dismiss="modal" aria-hidden="true" type="submit" class="btn btn-danger deny" onclick="$('#barcode').focus(); return false;"> |
567 |
<i class="fa fa-times"></i> Ignore |
568 |
</button> |
569 |
</div> |
570 |
</form> |
571 |
</div> |
572 |
</div> |
573 |
</div> |
574 |
[% END %] |
509 |
[% END %] |
575 |
[% END %] |
510 |
|
576 |
|
511 |
[% IF ( errmsgloop ) %] |
577 |
[% IF ( errmsgloop ) %] |
512 |
- |
|
|