Lines 125-135
$(document).ready(function () {
Link Here
|
125 |
|
125 |
|
126 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Check in</div> |
126 |
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> › Check in</div> |
127 |
|
127 |
|
128 |
<div id="doc" class="yui-t7"> |
128 |
<div id="doc3" class="yui-t2"> |
129 |
|
|
|
130 |
<div id="bd"> |
131 |
<div id="yui-main"> |
132 |
|
129 |
|
|
|
130 |
<div id="bd"> |
131 |
<div id="yui-main"> |
132 |
<div class="yui-b"> |
133 |
<div class="yui-g"> |
133 |
<div class="yui-g"> |
134 |
|
134 |
|
135 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
135 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
Lines 442-507
$(document).ready(function () {
Link Here
|
442 |
<p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> |
442 |
<p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> |
443 |
[% END %] |
443 |
[% END %] |
444 |
[% FOREACH errmsgloo IN errmsgloop %] |
444 |
[% FOREACH errmsgloo IN errmsgloop %] |
445 |
[% IF ( errmsgloo.NotForLoanStatusUpdated ) %] |
445 |
[% IF ( errmsgloo.NotForLoanStatusUpdated ) %] |
446 |
<p class="problem"> |
446 |
<p class="problem"> |
447 |
Not for loan status updated. |
447 |
Not for loan status updated. |
448 |
<br />Old value: |
448 |
<br />Old value: |
449 |
[% IF errmsgloo.NotForLoanStatusUpdated.from %] |
449 |
[% IF errmsgloo.NotForLoanStatusUpdated.from %] |
450 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %]. |
450 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %]. |
451 |
[% ELSE %] |
451 |
[% ELSE %] |
452 |
Available for loan. |
452 |
Available for loan. |
453 |
[% END %] |
|
|
454 |
<br />New value: |
455 |
[% IF errmsgloo.NotForLoanStatusUpdated.to %] |
456 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %]. |
457 |
[% ELSE %] |
458 |
Available for loan. |
459 |
[% END %] |
460 |
</p> |
461 |
[% END %] |
462 |
[% IF ( errmsgloo.badbarcode ) %] |
463 |
<p class="problem">No item with barcode: [% errmsgloo.msg %]</p> |
464 |
[% END %] |
465 |
[% IF ( errmsgloo.ispermanent ) %] |
466 |
<p class="problem">Please return item to: [% errmsgloo.msg %]</p> |
467 |
[% END %] |
468 |
[% IF ( errmsgloo.notissued ) %] |
469 |
<p class="problem">Not checked out.</p> |
470 |
[% END %] |
471 |
[% IF ( errmsgloo.localuse) %] |
472 |
<p class="problem">Local use recorded</p> |
473 |
[% END %] |
474 |
[% IF ( errmsgloo.waslost ) %] |
475 |
<p class="problem">Item was lost, now found.</p> |
476 |
[% IF ( LostItemFeeRefunded ) %] |
477 |
<p class="problem">A refund has been applied to the borrowing patron's account.</p> |
478 |
[% ELSE %] |
479 |
<p class="problem">Any lost item fees for this item will remain on the patron's account.</p> |
480 |
[% END %] |
481 |
[% END %] |
482 |
[% IF ( errmsgloo.withdrawn ) %] |
483 |
[% IF BlockReturnOfWithdrawnItems %] |
484 |
<h5>Cannot check in</h5> |
485 |
<p><strong>NOT CHECKED IN</strong></p> |
486 |
<p class="problem">Item is withdrawn.</p> |
487 |
[% ELSE %] |
488 |
<p class="problem">Item is withdrawn.</p> |
489 |
[% END %] |
490 |
[% END %] |
491 |
[% IF ( errmsgloo.debarred ) %] |
492 |
<p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p> |
493 |
[% END %] |
494 |
[% IF ( errmsgloo.prevdebarred ) %] |
495 |
<p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> |
496 |
[% END %] |
453 |
[% END %] |
497 |
[% IF ( errmsgloo.foreverdebarred ) %] |
454 |
<br />New value: |
498 |
<p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p> |
455 |
[% IF errmsgloo.NotForLoanStatusUpdated.to %] |
|
|
456 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %]. |
457 |
[% ELSE %] |
458 |
Available for loan. |
499 |
[% END %] |
459 |
[% END %] |
500 |
|
460 |
</p> |
|
|
461 |
[% END %] |
462 |
[% IF ( errmsgloo.badbarcode ) %] |
463 |
<p class="problem">No item with barcode: [% errmsgloo.msg %]</p> |
464 |
[% END %] |
465 |
[% IF ( errmsgloo.ispermanent ) %] |
466 |
<p class="problem">Please return item to: [% errmsgloo.msg %]</p> |
467 |
[% END %] |
468 |
[% IF ( errmsgloo.notissued ) %] |
469 |
<p class="problem">Not checked out.</p> |
470 |
[% END %] |
471 |
[% IF ( errmsgloo.localuse) %] |
472 |
<p class="problem">Local use recorded</p> |
473 |
[% END %] |
474 |
[% IF ( errmsgloo.waslost ) %] |
475 |
<p class="problem">Item was lost, now found.</p> |
476 |
[% IF ( LostItemFeeRefunded ) %] |
477 |
<p class="problem">A refund has been applied to the borrowing patron's account.</p> |
478 |
[% ELSE %] |
479 |
<p class="problem">Any lost item fees for this item will remain on the patron's account.</p> |
480 |
[% END %] |
481 |
[% END %] |
482 |
[% IF ( errmsgloo.withdrawn ) %] |
483 |
[% IF BlockReturnOfWithdrawnItems %] |
484 |
<h5>Cannot check in</h5> |
485 |
<p><strong>NOT CHECKED IN</strong></p> |
486 |
<p class="problem">Item is withdrawn.</p> |
487 |
[% ELSE %] |
488 |
<p class="problem">Item is withdrawn.</p> |
489 |
[% END %] |
490 |
[% END %] |
491 |
[% IF ( errmsgloo.debarred ) %] |
492 |
<p class="problem"><a href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=[% errmsgloo.debarborrowernumber %]">[% errmsgloo.debarname %]([% errmsgloo.debarcardnumber %])</a> is now debarred until [% errmsgloo.debarred | $KohaDates %].</p> |
493 |
[% END %] |
494 |
[% IF ( errmsgloo.prevdebarred ) %] |
495 |
<p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> |
496 |
[% END %] |
497 |
[% IF ( errmsgloo.foreverdebarred ) %] |
498 |
<p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p> |
501 |
[% END %] |
499 |
[% END %] |
502 |
[% ELSE %] |
|
|
503 |
[% END %] |
500 |
[% END %] |
504 |
</div> |
501 |
</div> |
|
|
502 |
[% END %] |
505 |
|
503 |
|
506 |
[% IF ( checkinmsg ) %] |
504 |
[% IF ( checkinmsg ) %] |
507 |
[% IF ( checkinmsgtype == 'alert' ) %] |
505 |
[% IF ( checkinmsgtype == 'alert' ) %] |
Lines 523-529
$(document).ready(function () {
Link Here
|
523 |
<p>Book drop mode. (Effective checkin date is [% dropboxdate %] ).</p> |
521 |
<p>Book drop mode. (Effective checkin date is [% dropboxdate %] ).</p> |
524 |
</div> |
522 |
</div> |
525 |
</div> |
523 |
</div> |
526 |
<div class="yui-g"> |
524 |
<div class="yui-g"> |
527 |
<form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" > |
525 |
<form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" > |
528 |
<div class="yui-u first"> |
526 |
<div class="yui-u first"> |
529 |
<fieldset> |
527 |
<fieldset> |
Lines 636-644
$(document).ready(function () {
Link Here
|
636 |
</td> |
634 |
</td> |
637 |
</tr> |
635 |
</tr> |
638 |
[% END %] |
636 |
[% END %] |
639 |
</table></div> |
637 |
</table> |
640 |
[% END %] |
638 |
[% END %] |
641 |
|
639 |
</div> |
642 |
|
640 |
</div> |
|
|
641 |
<div class="yui-b noprint"> |
642 |
[% INCLUDE 'circ-nav.inc' %] |
643 |
</div> |
644 |
</div> |
645 |
</div> |
643 |
</div> |
646 |
</div> |
644 |
[% INCLUDE 'intranet-bottom.inc' %] |
647 |
[% INCLUDE 'intranet-bottom.inc' %] |