Kyle M Hall
2e4411e77f
This patch adds a renewal tool that functions similar to the returns where a librarian can continuously scan items for renewal. This script blocks renewals that are impossible, and allow the same renewal overrides as circulation.pl Test plan: 1) Apply the patches for bug 8798 2) Apply this patch 3) Browse to /cgi-bin/koha/circ/renew.pl 4) Enter an invalid barcode, you should get an error message 5) Enter a valid, but not checked out barcode, you should get an error message. 6) Enter a valid barcode that is checkout out and should be renewable, you should get a success message. 7) Enable AllowRenewalLimitOverride 8) Enter a barcode for an item that has been renewed too many times 9) You should get a warning which you can override. 10) Disable AllowRenewalLimitOverride 11) Repeat steap 8 12) You should get a blocking error message 11) Enter a barcode for an item with unfilled holds on it, you should get an overridable warning Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de> Passes all tests and QA script, some issues have been addressed in follow-ups. Signed-off-by: Galen Charlton <gmc@esilibrary.com>
71 lines
3 KiB
Text
71 lines
3 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Circulation</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
</head>
|
|
<body id="circ_circulation-home" class="circ">
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'circ-search.inc' %]
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › Circulation</div>
|
|
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div class="yui-g">
|
|
|
|
<h1>Circulation</h1>
|
|
|
|
<div class="yui-u first">
|
|
<ul>
|
|
<li><a href="/cgi-bin/koha/circ/circulation.pl">Check out</a></li>
|
|
<li><a href="/cgi-bin/koha/circ/returns.pl">Check in</a></li>
|
|
<li><a href="/cgi-bin/koha/circ/renew.pl">Renew</a></li>
|
|
[% IF ( display_transfer ) %]
|
|
<li><a href="/cgi-bin/koha/circ/branchtransfers.pl">Transfer</a></li>
|
|
[% END %]
|
|
[% IF ( AutoLocation ) %][% ELSE %][% IF ( IndependentBranches ) %][% ELSE %]<li><a href="/cgi-bin/koha/circ/selectbranchprinter.pl">Set library</a></li>[% END %][% END %]
|
|
[% IF ( fast_cataloging ) %]
|
|
[% IF ( CAN_user_editcatalogue_fast_cataloging ) %]
|
|
<li><a href="/cgi-bin/koha/cataloguing/addbiblio.pl?frameworkcode=FA">Fast cataloging</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="yui-u">
|
|
|
|
<h5>Circulation Reports</h5>
|
|
<ul>
|
|
<li> <a href="/cgi-bin/koha/circ/view_holdsqueue.pl" title="holds queue">Holds queue</a></li>
|
|
<li> <a href="/cgi-bin/koha/circ/pendingreserves.pl" title="holds to retrieve off the shelf">Holds to pull</a></li>
|
|
<li> <a href="/cgi-bin/koha/circ/waitingreserves.pl" title="holds waiting for patron pickup">Holds awaiting pickup</a></li>
|
|
<li> <a href="/cgi-bin/koha/circ/reserveratios.pl">Hold ratios</a></li>
|
|
<li> <a href="/cgi-bin/koha/circ/transferstoreceive.pl" title="transfers to receive at your library">Transfers to receive</a></li>
|
|
[% IF ( CAN_user_circulate_overdues_report ) %]<li> <a href="/cgi-bin/koha/circ/overdue.pl">Overdues</a>
|
|
- <b>Warning:</b> This report is very resource intensive on
|
|
systems with large numbers of overdue items.</li>[% END %]
|
|
<li> <a href="/cgi-bin/koha/circ/branchoverdues.pl">Overdues with fines</a> - Limited to your library. See report help for other details.</li>
|
|
<!-- <li> <a href="/cgi-bin/koha/circ/stats.pl?time=yesterday">Daily reconciliation</a></li> -->
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
<div class="yui-u">
|
|
<h5>Offline circulation</h5>
|
|
<ul>
|
|
[% IF (AllowOfflineCirculation) %]
|
|
<li><a href="/cgi-bin/koha/circ/offline.pl">Built-in offline circulation interface</a></li>
|
|
[% END %]
|
|
<li><a href="/cgi-bin/koha/offline_circ/process_koc.pl">Upload offline circulation file (.koc)</a></li>
|
|
<li><a href="/cgi-bin/koha/offline_circ/list.pl">Pending offline circulation actions</a>
|
|
<ul>
|
|
<li><a href="http://kylehall.info/index.php/projects/koha/koha-offline-circulation/">Get desktop application</a></li>
|
|
<li><a href="https://addons.mozilla.org/[% lang %]/firefox/addon/koct/">Get Firefox add-on</a></li>
|
|
</ul>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|