|
Lines 140-150
$(document).ready(function () {
Link Here
|
| 140 |
|
140 |
|
| 141 |
<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> |
141 |
<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> |
| 142 |
|
142 |
|
| 143 |
<div id="doc" class="yui-t7"> |
143 |
[% IF Koha.Preference('circSidebar') %]<div id="doc3" class="yui-t2">[% ELSE %]<div id="doc" class="yui-t7">[% END %] |
| 144 |
|
|
|
| 145 |
<div id="bd"> |
| 146 |
<div id="yui-main"> |
| 147 |
|
144 |
|
|
|
145 |
<div id="bd"> |
| 146 |
<div id="yui-main"> |
| 147 |
[% IF Koha.Preference('circSidebar') %]<div class="yui-b">[% END %] |
| 148 |
<div class="yui-g"> |
148 |
<div class="yui-g"> |
| 149 |
|
149 |
|
| 150 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
150 |
[% IF privacy == 2 AND NOT Koha.Preference('AnonymousPatron') %] |
|
Lines 461-526
$(document).ready(function () {
Link Here
|
| 461 |
<p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> |
461 |
<p><a href="/cgi-bin/koha/catalogue/detail.pl?type=intra&biblionumber=[% itembiblionumber %]">[% itembarcode |html %]: [% title |html %]</a></p> |
| 462 |
[% END %] |
462 |
[% END %] |
| 463 |
[% FOREACH errmsgloo IN errmsgloop %] |
463 |
[% FOREACH errmsgloo IN errmsgloop %] |
| 464 |
[% IF ( errmsgloo.NotForLoanStatusUpdated ) %] |
464 |
[% IF ( errmsgloo.NotForLoanStatusUpdated ) %] |
| 465 |
<p class="problem"> |
465 |
<p class="problem"> |
| 466 |
Not for loan status updated. |
466 |
Not for loan status updated. |
| 467 |
<br />Old value: |
467 |
<br />Old value: |
| 468 |
[% IF errmsgloo.NotForLoanStatusUpdated.from %] |
468 |
[% IF errmsgloo.NotForLoanStatusUpdated.from %] |
| 469 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %]. |
469 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.from ) %]. |
| 470 |
[% ELSE %] |
470 |
[% ELSE %] |
| 471 |
Available for loan. |
471 |
Available for loan. |
| 472 |
[% END %] |
|
|
| 473 |
<br />New value: |
| 474 |
[% IF errmsgloo.NotForLoanStatusUpdated.to %] |
| 475 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %]. |
| 476 |
[% ELSE %] |
| 477 |
Available for loan. |
| 478 |
[% END %] |
| 479 |
</p> |
| 480 |
[% END %] |
| 481 |
[% IF ( errmsgloo.badbarcode ) %] |
| 482 |
<p class="problem">No item with barcode: [% errmsgloo.msg %]</p> |
| 483 |
[% END %] |
| 484 |
[% IF ( errmsgloo.ispermanent ) %] |
| 485 |
<p class="problem">Please return item to: [% errmsgloo.msg %]</p> |
| 486 |
[% END %] |
| 487 |
[% IF ( errmsgloo.notissued ) %] |
| 488 |
<p class="problem">Not checked out.</p> |
| 489 |
[% END %] |
| 490 |
[% IF ( errmsgloo.localuse) %] |
| 491 |
<p class="problem">Local use recorded</p> |
| 492 |
[% END %] |
| 493 |
[% IF ( errmsgloo.waslost ) %] |
| 494 |
<p class="problem">Item was lost, now found.</p> |
| 495 |
[% IF ( LostItemFeeRefunded ) %] |
| 496 |
<p class="problem">A refund has been applied to the borrowing patron's account.</p> |
| 497 |
[% ELSE %] |
| 498 |
<p class="problem">Any lost item fees for this item will remain on the patron's account.</p> |
| 499 |
[% END %] |
| 500 |
[% END %] |
| 501 |
[% IF ( errmsgloo.withdrawn ) %] |
| 502 |
[% IF BlockReturnOfWithdrawnItems %] |
| 503 |
<h5>Cannot check in</h5> |
| 504 |
<p><strong>NOT CHECKED IN</strong></p> |
| 505 |
<p class="problem">Item is withdrawn.</p> |
| 506 |
[% ELSE %] |
| 507 |
<p class="problem">Item is withdrawn.</p> |
| 508 |
[% END %] |
| 509 |
[% END %] |
| 510 |
[% IF ( errmsgloo.debarred ) %] |
| 511 |
<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> |
| 512 |
[% END %] |
| 513 |
[% IF ( errmsgloo.prevdebarred ) %] |
| 514 |
<p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> |
| 515 |
[% END %] |
472 |
[% END %] |
| 516 |
[% IF ( errmsgloo.foreverdebarred ) %] |
473 |
<br />New value: |
| 517 |
<p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p> |
474 |
[% IF errmsgloo.NotForLoanStatusUpdated.to %] |
|
|
475 |
[% AuthorisedValues.GetByCode( 'NOT_LOAN', errmsgloo.NotForLoanStatusUpdated.to ) %]. |
| 476 |
[% ELSE %] |
| 477 |
Available for loan. |
| 518 |
[% END %] |
478 |
[% END %] |
| 519 |
|
479 |
</p> |
|
|
480 |
[% END %] |
| 481 |
[% IF ( errmsgloo.badbarcode ) %] |
| 482 |
<p class="problem">No item with barcode: [% errmsgloo.msg %]</p> |
| 483 |
[% END %] |
| 484 |
[% IF ( errmsgloo.ispermanent ) %] |
| 485 |
<p class="problem">Please return item to: [% errmsgloo.msg %]</p> |
| 486 |
[% END %] |
| 487 |
[% IF ( errmsgloo.notissued ) %] |
| 488 |
<p class="problem">Not checked out.</p> |
| 489 |
[% END %] |
| 490 |
[% IF ( errmsgloo.localuse) %] |
| 491 |
<p class="problem">Local use recorded</p> |
| 492 |
[% END %] |
| 493 |
[% IF ( errmsgloo.waslost ) %] |
| 494 |
<p class="problem">Item was lost, now found.</p> |
| 495 |
[% IF ( LostItemFeeRefunded ) %] |
| 496 |
<p class="problem">A refund has been applied to the borrowing patron's account.</p> |
| 497 |
[% ELSE %] |
| 498 |
<p class="problem">Any lost item fees for this item will remain on the patron's account.</p> |
| 499 |
[% END %] |
| 500 |
[% END %] |
| 501 |
[% IF ( errmsgloo.withdrawn ) %] |
| 502 |
[% IF BlockReturnOfWithdrawnItems %] |
| 503 |
<h5>Cannot check in</h5> |
| 504 |
<p><strong>NOT CHECKED IN</strong></p> |
| 505 |
<p class="problem">Item is withdrawn.</p> |
| 506 |
[% ELSE %] |
| 507 |
<p class="problem">Item is withdrawn.</p> |
| 508 |
[% END %] |
| 509 |
[% END %] |
| 510 |
[% IF ( errmsgloo.debarred ) %] |
| 511 |
<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> |
| 512 |
[% END %] |
| 513 |
[% IF ( errmsgloo.prevdebarred ) %] |
| 514 |
<p class="problem"><b>Reminder: </b>Patron was earlier restricted until [% errmsgloo.prevdebarred | $KohaDates %].</p> |
| 515 |
[% END %] |
| 516 |
[% IF ( errmsgloo.foreverdebarred ) %] |
| 517 |
<p class="problem"><b>Reminder: </b>Patron has an indefinite restriction.</p> |
| 520 |
[% END %] |
518 |
[% END %] |
| 521 |
[% ELSE %] |
|
|
| 522 |
[% END %] |
519 |
[% END %] |
| 523 |
</div> |
520 |
</div> |
|
|
521 |
[% END %] |
| 524 |
|
522 |
|
| 525 |
[% IF ( checkinmsg ) %] |
523 |
[% IF ( checkinmsg ) %] |
| 526 |
[% IF ( checkinmsgtype == 'alert' ) %] |
524 |
[% IF ( checkinmsgtype == 'alert' ) %] |
|
Lines 542-548
$(document).ready(function () {
Link Here
|
| 542 |
<p>Book drop mode. (Effective checkin date is [% dropboxdate %] ).</p> |
540 |
<p>Book drop mode. (Effective checkin date is [% dropboxdate %] ).</p> |
| 543 |
</div> |
541 |
</div> |
| 544 |
</div> |
542 |
</div> |
| 545 |
<div class="yui-g"> |
543 |
<div class="yui-g"> |
| 546 |
<form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" > |
544 |
<form id="checkin-form" method="post" action="/cgi-bin/koha/circ/returns.pl" autocomplete="off" > |
| 547 |
<div class="yui-u first"> |
545 |
<div class="yui-u first"> |
| 548 |
<fieldset> |
546 |
<fieldset> |
|
Lines 655-663
$(document).ready(function () {
Link Here
|
| 655 |
</td> |
653 |
</td> |
| 656 |
</tr> |
654 |
</tr> |
| 657 |
[% END %] |
655 |
[% END %] |
| 658 |
</table></div> |
656 |
</table> |
| 659 |
[% END %] |
657 |
[% END %] |
| 660 |
|
658 |
</div> |
| 661 |
|
659 |
[% IF Koha.Preference('circSidebar') %] |
|
|
660 |
</div> |
| 661 |
<div class="yui-b noprint"> |
| 662 |
[% INCLUDE 'circ-nav.inc' %] |
| 663 |
</div> |
| 664 |
[% END %] |
| 665 |
</div> |
| 666 |
</div> |
| 662 |
</div> |
667 |
</div> |
| 663 |
[% INCLUDE 'intranet-bottom.inc' %] |
668 |
[% INCLUDE 'intranet-bottom.inc' %] |