527 lines
21 KiB
Cheetah
Executable file
527 lines
21 KiB
Cheetah
Executable file
<!-- TMPL_INCLUDE NAME="doc-head-open.inc" -->
|
|
<title>Koha › Circulation
|
|
<!-- TMPL_IF NAME="borrowernumber" -->
|
|
› Checking out to <!-- TMPL_VAR name="surname" -->, <!-- TMPL_VAR name="firstname" -->
|
|
(<!-- TMPL_VAR NAME="cardnumber" -->)
|
|
<!-- /TMPL_IF --></title>
|
|
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
|
|
<script type="text/JavaScript" language="JavaScript">
|
|
//<![CDATA[
|
|
$(document).ready(function() {
|
|
$('#patronlists').tabs();
|
|
verify_patron_images();
|
|
});
|
|
//]]>
|
|
|
|
// http://www.oreillynet.com/pub/a/javascript/2003/10/21/amazonhacks.html
|
|
function verify_patron_images() {
|
|
for (var i = 0; i < document.images.length; i++) {
|
|
img = document.images[i];
|
|
if ((img.src.indexOf('patronimages') >= 0)) {
|
|
w = img.width;
|
|
h = img.height;
|
|
if ((w == 0) && (h == 0) || ((img.complete != null) && (!img.complete))) {
|
|
img.src = '/intranet-tmpl/prog/img/patron-blank.png';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<!-- TMPL_INCLUDE NAME="calendar.inc" -->
|
|
</head>
|
|
<body>
|
|
|
|
<!-- TMPL_INCLUDE NAME="header.inc" -->
|
|
<!-- TMPL_INCLUDE NAME="circ-search.inc" -->
|
|
|
|
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> › <a href="/cgi-bin/koha/circ/circulation-home.pl">Circulation</a> ›<!-- TMPL_IF NAME="borrowernumber" --> <a href="/cgi-bin/koha/circ/circulation.pl">Checkouts</a> › <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR name="surname" --><!-- TMPL_ELSE --> <strong>Checkouts</strong><!-- /TMPL_IF --></div>
|
|
|
|
<!-- TMPL_IF NAME="CGIselectborrower" -->
|
|
<div id="doc" class="yui-t7">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-g">
|
|
<!-- TMPL_ELSE -->
|
|
<div id="doc3" class="yui-t2">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="borrowernumber" -->
|
|
<!-- TMPL_INCLUDE NAME="circ-toolbar.inc" -->
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- INITIAL BLOC : PARAMETERS & BORROWER INFO -->
|
|
|
|
<!-- TMPL_IF NAME="NEEDSCONFIRMATION" -->
|
|
<div class="yui-g" style="text-align: center"><div id="circ_needsconfirmation" class="dialog">
|
|
<div><div class="confirm">
|
|
<h3>Please Confirm Checkout</h3>
|
|
|
|
<ul>
|
|
<!-- TMPL_IF NAME="DEBT" -->
|
|
<li>The patron has a debt of $<!-- TMPL_VAR name="DEBT" --></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="RENEW_ISSUE" -->
|
|
<li>Item is currently checked out to this patron. Renew?</li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="RESERVE_WAITING" -->
|
|
<li>Item is consigned for <!-- TMPL_VAR NAME="RESERVE_WAITING" --></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="RESERVED" -->
|
|
<li>Item is on reserve for <!-- TMPL_VAR NAME="RESERVED" --></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="ISSUED_TO_ANOTHER" -->
|
|
<li>Item ( <!-- TMPL_VAR NAME="getTitleMessageIteminfo" --> ) checked out to <!-- TMPL_VAR NAME="ISSUED_TO_ANOTHER" -->. Check in and check out?</li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="TOO_MANY" -->
|
|
<li>Too many checked out (already checked out / max : <!-- TMPL_VAR name="TOO_MANY" -->)</li>
|
|
<!-- /TMPL_IF -->
|
|
</ul>
|
|
|
|
<form method="post" action="/cgi-bin/koha/circ/circulation.pl">
|
|
|
|
<!-- TMPL_IF NAME="RESERVED" -->
|
|
<p>
|
|
<input type="checkbox" id="cancelreserve" name="cancelreserve" value="1" />
|
|
<label for="cancelreserve">Cancel Reserve</label>
|
|
</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="RESERVE_WAITING" -->
|
|
<p>
|
|
<input type="checkbox" id="cancelreserve" name="cancelreserve" value="1" />
|
|
<label for="cancelreserve">Cancel Reserve</label>
|
|
</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<input type="hidden" name="barcode" value="<!-- TMPL_VAR NAME="barcode" -->" />
|
|
<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
|
|
<input type="hidden" name="issueconfirmed" value="1" />
|
|
<input type="hidden" name="day" value="<!-- TMPL_VAR name="day" -->" />
|
|
<input type="hidden" name="month" value="<!-- TMPL_VAR name="month" -->" />
|
|
<input type="hidden" name="year" value="<!-- TMPL_VAR name="year" -->" />
|
|
<input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
|
|
<input type="submit" class="approve" value="Yes, Check Out (Y)" accesskey="y" />
|
|
</form>
|
|
|
|
<form method="get" action="/cgi-bin/koha/circ/circulation.pl">
|
|
<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
|
|
<input type="submit" class="deny" value="No, Don't Check Out (N)" accesskey="n" />
|
|
</form>
|
|
|
|
</div></div></div></div>
|
|
|
|
<!-- /TMPL_IF --> <!-- NEEDSCONFIRMATION -->
|
|
|
|
<!-- TMPL_IF NAME="issued" -->
|
|
<p>Item Checked out</p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="message" -->
|
|
<!-- TMPL_INCLUDE NAME="patron-toolbar.inc" -->
|
|
<h4>
|
|
No patron matched <span class="ex"><!-- TMPL_VAR name="message" --></span>
|
|
</h4>
|
|
<!-- /TMPL_IF -->
|
|
|
|
|
|
<!-- TMPL_IF NAME="CGIselectborrower" -->
|
|
<!-- TMPL_INCLUDE NAME="patron-toolbar.inc" -->
|
|
|
|
<form method="post" action="/cgi-bin/koha/circ/circulation.pl" id="mainform" name="mainform">
|
|
<fieldset id="circ_circulation_selectborrower" class="brief">
|
|
<legend>Patron selection</legend>
|
|
|
|
<input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
|
|
<input type="hidden" name="printer" value="<!-- TMPL_VAR NAME="printer" -->" />
|
|
|
|
<ol> <li>
|
|
<label for="borrowernumber">Select a patron: </label>
|
|
<!-- TMPL_VAR name="CGIselectborrower" -->
|
|
</li>
|
|
</ol>
|
|
<p><input type="submit" value="Select" /></p>
|
|
</fieldset>
|
|
</form>
|
|
<!-- TMPL_ELSE --> <!-- CGIselectborrower -->
|
|
|
|
<!-- BARCODE ENTRY -->
|
|
|
|
<!-- TMPL_IF NAME="borrowernumber" -->
|
|
<div class="yui-g">
|
|
<!-- TMPL_UNLESS NAME="noissues" -->
|
|
<!-- TMPL_IF NAME="flagged" -->
|
|
<div class="yui-u first">
|
|
<!-- TMPL_ELSE -->
|
|
<div><!-- /TMPL_IF --><form method="post" action="/cgi-bin/koha/circ/circulation.pl" name="mainform">
|
|
<fieldset id="circ_circulation_issue">
|
|
<label for="barcode">Checking out to <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR name="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->) </label>
|
|
<div class="hint">Enter item barcode:</div>
|
|
|
|
<input type="text" name="barcode" id="barcode" class="focus" size="14" />
|
|
|
|
<!-- RESULT OF ISSUING REQUEST -->
|
|
<!-- TMPL_IF NAME="IMPOSSIBLE" -->
|
|
<ul>
|
|
<!-- TMPL_IF NAME="INVALID_DATE" -->
|
|
<li><span class="problem">The due date is invalid</span></li>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="UNKNOWN_BARCODE" -->
|
|
<li><span class="problem">The barcode was not found</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="NOT_FOR_LOAN" -->
|
|
<li><span class="problem">Item not for loan</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="WTHDRAWN" -->
|
|
<li><span class="problem">Item is cancelled</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="GNA" -->
|
|
<li><span class="problem">Patron's address is in doubt</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="CARD_LOST" -->
|
|
<li><span class="problem">Patron's card is lost</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="DEBARRED" -->
|
|
<li><span class="problem">Patron is restricted</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="NO_MORE_RENEWALS" -->
|
|
<li><span class="problem">No more renewals possible</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="EXPIRED" -->
|
|
<li><span class="problem">Patron's card is expired</span></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="NOTSAMEBRANCH" -->
|
|
<li><span class="problem">This item belongs to <!-- TMPL_VAR NAME="itemhomebranch" --> and cannot be issued from this location.</span></li>
|
|
<!-- /TMPL_IF -->
|
|
</ul>
|
|
|
|
<!-- TMPL_IF NAME="memberofinstution" -->
|
|
<p><!-- TMPL_VAR NAME="CGIorganisations" --></p>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!--/TMPL_IF --> <!-- /impossible -->
|
|
<p class="date-select">
|
|
<label for "duedatespec">Specify Due Date:</label> <input type="text" size="10" id="duedatespec" name="duedatespec" value="<!-- TMPL_VAR NAME="duedatespec" -->" />
|
|
<img src="<!-- TMPL_VAR Name="themelang" -->/lib/calendar/cal.gif" alt="Show Calendar" border="0" id="CalendarDueDate" style="cursor: pointer;" valign="top" />
|
|
<script language="JavaScript" type="text/javascript">
|
|
function validate1(date) {
|
|
var today = new Date();
|
|
if ( date < today ) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
function refocus(calendar) {
|
|
document.getElementById('barcode').focus();
|
|
calendar.hide();
|
|
};
|
|
//#TODO - ADD syspref (AllowPostDatedCheckouts).
|
|
Calendar.setup(
|
|
{
|
|
inputField : "duedatespec",
|
|
ifFormat : "%Y-%m-%d",
|
|
button : "CalendarDueDate",
|
|
disableFunc : validate1,
|
|
dateStatusFunc : validate1,
|
|
onClose : refocus
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<label for="stickyduedate">Remember for Session:</label>
|
|
<input type="checkbox" id="stickyduedate" onclick="this.form.barcode.focus();" name="stickyduedate" <!-- TMPL_IF NAME="stickyduedate" --> checked="1" <!-- /TMPL_IF --> />
|
|
<input type="button" class="action" id="cleardate" value="Clear" name="cleardate" onclick="this.checked = false; this.form.duedatespec.value = ''; this.form.stickyduedate.checked = false; this.form.barcode.focus(); return false;" />
|
|
<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
|
|
<input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
|
|
<input type="hidden" name="printer" value="<!-- TMPL_VAR NAME="printer" -->" />
|
|
<input type="hidden" name="print" value="maybe" />
|
|
<!-- TMPL_IF NAME="CHARGES" -->
|
|
<input type="hidden" name="charges" value="yes" />
|
|
<input type="hidden" name="oldamount" value="<!-- TMPL_VAR NAME="amountold" -->" />
|
|
<!-- /TMPL_IF -->
|
|
|
|
<fieldset class="action">
|
|
<input type="submit" value="Check Out" />
|
|
</fieldset>
|
|
</p>
|
|
</fieldset>
|
|
</form></div><!-- /TMPL_UNLESS --><!-- /unless noissues -->
|
|
|
|
<!-- TMPL_IF NAME="noissues" --><div><!-- TMPL_ELSE --><div class="yui-u"><!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="flagged" -->
|
|
<!-- TMPL_IF NAME="noissues" -->
|
|
<div class="hint">Checking out to <!-- TMPL_VAR name="firstname" --> <!-- TMPL_VAR name="surname" --> (<!-- TMPL_VAR NAME="cardnumber" -->)</div>
|
|
<div id="circmessages" class="circmessage warning">
|
|
<!-- TMPL_ELSE -->
|
|
<div id="circmessages" class="circmessage attention">
|
|
<!-- /TMPL_IF -->
|
|
|
|
<h3><!-- TMPL_IF NAME="noissues" -->Cannot Check Out!<!-- TMPL_ELSE -->Attention:<!-- /TMPL_IF --></h3>
|
|
<ul>
|
|
|
|
<!--TMPL_IF Name="warndeparture"-->
|
|
<li><span class="circ-hlt">Expiration:</span> Patron card has expired or will expire soon.</li>
|
|
<!--/TMPL_IF-->
|
|
|
|
<!-- TMPL_IF NAME="gna" -->
|
|
<li class="blocker"><span class="circ-hlt">Address:</span> Patron's address in doubt</li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="lost" -->
|
|
<li class="blocker"><span class="circ-hlt">Lost: </span>Patron's card is lost</li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="dbarred" --><li class="blocker">
|
|
<span class="circ-hlt"> Restricted:</span> Patron's account is restricted <a href="/cgi-bin/koha/members/setdebar.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&cardnumber=<!-- TMPL_VAR NAME="cardnumber" -->&destination=circ&status=0">Lift restriction</a></li><!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="odues" --><li><!-- TMPL_IF name="nonreturns" --><span class="circ-hlt">Overdues:</span> Patron has <span class="circ-hlt">ITEMS OVERDUE</span>. See highlighted items <a href="#checkouts">below</a><!-- /TMPL_IF --></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF NAME="charges" -->
|
|
<li><span class="circ-hlt">Fines:</span> Patron has <a href="/cgi-bin/koha/members/boraccount.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->">Outstanding fines</a>.
|
|
Make <a href="/cgi-bin/koha/members/pay.pl?borrowernumber=<!-- TMPL_VAR name="borrowernumber" -->">Payment</a></li>
|
|
<!-- /TMPL_IF -->
|
|
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- TMPL_IF NAME="WaitingReserveLoop" -->
|
|
<div id="holdswaiting" class="circmessage">
|
|
<h4>Holds waiting:</h4>
|
|
<!-- TMPL_LOOP NAME="WaitingReserveLoop" -->
|
|
<ul>
|
|
<li> <a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title"--></a> (<!-- TMPL_VAR NAME="itemtype"-->), <!-- TMPL_IF NAME="author" -->by <!-- TMPL_VAR NAME="author"-->,<!-- /TMPL_IF --> reserved on <!-- TMPL_VAR NAME="reservedate"-->
|
|
<!-- TMPL_IF NAME="waitingat" -->
|
|
waiting at : <!-- TMPL_VAR NAME="waitingat" -->
|
|
<!-- /TMPL_IF -->
|
|
</li>
|
|
</ul>
|
|
<!-- /TMPL_LOOP -->
|
|
</div>
|
|
<!-- /If WaitingReserveLoop --><!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="notes" -->
|
|
<div id="circnotes" class="circmessage">
|
|
<h4>Notes:</h4>
|
|
<p><!-- TMPL_VAR name="notesmsg" --></p>
|
|
</div>
|
|
<!-- /If notes --><!-- /TMPL_IF -->
|
|
<!-- /If flagged --><!-- /TMPL_IF -->
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div class="yui-g"><div id="patronlists" class="toptabs">
|
|
|
|
<ul>
|
|
<li> <!--TMPL_IF NAME="issuecount"-->
|
|
<a href="/cgi-bin/koha/circ/circulation.pl#checkouts"><!-- TMPL_VAR NAME="issuecount"--> Checkout(s)</a>
|
|
<!-- TMPL_ELSE -->
|
|
<a href="/cgi-bin/koha/circ/circulation.pl#checkouts">0 Checkouts</a>
|
|
<!-- /TMPL_IF --></li>
|
|
<li><!-- TMPL_IF NAME="countreserv"-->
|
|
<a href="/cgi-bin/koha/circ/circulation.pl#reserves"><!--TMPL_VAR NAME="countreserv"--> Holds(s)</a>
|
|
<!-- TMPL_ELSE -->
|
|
<a href="/cgi-bin/koha/circ/circulation.pl#reserves">0 Holds</a>
|
|
<!-- /TMPL_IF --></li>
|
|
|
|
</ul>
|
|
|
|
<!-- SUMMARY : TODAY & PREVIOUS ISSUES -->
|
|
<div id="checkouts">
|
|
<!--TMPL_IF NAME="issuecount"-->
|
|
<form action="/cgi-bin/koha/reserve/renewscript.pl" method="post">
|
|
<!-- <p>
|
|
<a href="#" onclick="window.open('/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&print=page'); return false;">Print Page</a>
|
|
/ <a href="#" onclick="window.open('/cgi-bin/koha/members/moremember.pl?borrowernumber=<!-- TMPL_VAR NAME="borrowernumber" -->&print=slip'); return false;">Print Slip</a>
|
|
</p> -->
|
|
|
|
<input type="hidden" value="circ" name="destination" />
|
|
<input type="hidden" name="cardnumber" value="<!-- TMPL_VAR NAME="cardnumber" -->" />
|
|
<input type="hidden" name="borrowernumber" value="<!-- TMPL_VAR NAME="borrowernumber" -->" />
|
|
<input type="hidden" name="branch" value="<!-- TMPL_VAR NAME="branch" -->" />
|
|
<table>
|
|
<tr>
|
|
<th>Due date</th>
|
|
<th>Title</th>
|
|
<th>Itemtype</th>
|
|
<th>Call no</th>
|
|
<th>Barcode</th>
|
|
<th>Renew?</th>
|
|
<th>Check In?</th>
|
|
</tr>
|
|
<!-- TMPL_IF NAME="todayissues" -->
|
|
|
|
<!-- TMPL_LOOP NAME="todayissues" -->
|
|
<!-- TMPL_IF NAME="togglecolor" -->
|
|
<tr>
|
|
<!-- TMPL_ELSE -->
|
|
<tr class="highlight">
|
|
<!-- /TMPL_IF -->
|
|
<td><!-- TMPL_VAR NAME="dd" --></td>
|
|
<td>
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&type=intra"><!-- TMPL_VAR NAME="title" --></a>
|
|
<!-- TMPL_IF NAME="author" -->, by <!-- TMPL_VAR NAME="author" --><!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="itemnotes" -->- <!-- TMPL_VAR name="itemnotes" --><!-- /TMPL_IF -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="itemtype" -->
|
|
<!-- TMPL_IF NAME="itemtype_image" -->
|
|
<img src="<!-- TMPL_VAR NAME="itemtype_image" -->" />
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="classification" --></td>
|
|
<td><!-- TMPL_VAR NAME="barcode" --></td>
|
|
<td>
|
|
<!-- TMPL_IF NAME="od" -->
|
|
<input type="checkbox" name="items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" />
|
|
<!-- TMPL_ELSE -->
|
|
<input type="checkbox" name="items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
|
|
<!-- /TMPL_IF -->
|
|
<input type="checkbox" name="all_items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" style="display: none;" />
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/circ/returns.pl?barcode=<!-- TMPL_VAR NAME="barcode" -->">Check In</a></td>
|
|
<!-- TMPL_IF NAME="renew_failed" -->
|
|
<td>Renewal Failed</td>
|
|
<!-- /TMPL_IF -->
|
|
</tr>
|
|
<!-- /loop todayissues --><!-- /TMPL_LOOP -->
|
|
<!-- /if todayissues --><!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="previssues" -->
|
|
<tr>
|
|
<th colspan="7"><a name="previous" id="previous">Previous checkouts</a></th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="previssues" -->
|
|
<!-- TMPL_IF NAME="togglecolor" -->
|
|
<tr>
|
|
<!-- TMPL_ELSE -->
|
|
<tr class="highlight">
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="od" --><td class="od"><!-- TMPL_ELSE --><td><!-- /TMPL_IF -->
|
|
<!-- TMPL_VAR NAME="dd" -->
|
|
</td>
|
|
<td>
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->&type=intra"><!-- TMPL_VAR NAME="title" --></a>
|
|
<br /><!-- TMPL_IF NAME="author" --><!-- TMPL_VAR NAME="author" --><!-- /TMPL_IF --> <!-- TMPL_IF NAME="itemnotes" -->- <!-- TMPL_VAR name="itemnotes" --><!-- /TMPL_IF -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_VAR NAME="itemtype" -->
|
|
<!-- TMPL_IF NAME="itemtype_image" -->
|
|
<img src="<!-- TMPL_VAR NAME="itemtype_image" -->" />
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="classification" --></td>
|
|
<td><!-- TMPL_VAR NAME="barcode" --></td>
|
|
<td>
|
|
<!-- TMPL_IF NAME="od" -->
|
|
<input type="checkbox" name="items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" />
|
|
<!-- TMPL_ELSE -->
|
|
<input type="checkbox" name="items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" />
|
|
<!-- /TMPL_IF -->
|
|
<input type="checkbox" name="all_items[]" value="<!-- TMPL_VAR NAME="itemnumber" -->" checked="checked" style="display: none;" />
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/circ/returns.pl?barcode=<!-- TMPL_VAR NAME="barcode" -->">Check In</a></td>
|
|
<!-- TMPL_IF NAME="renew_failed" -->
|
|
<td>Renewal Failed</td>
|
|
<!-- /TMPL_IF -->
|
|
|
|
</tr>
|
|
<!-- /loop previssues --><!-- /TMPL_LOOP -->
|
|
<!--/if previssues --><!-- /TMPL_IF -->
|
|
</table>
|
|
<!--TMPL_IF NAME="issuecount"-->
|
|
<div id="action">
|
|
<input type="submit" name="renew_checked" value="Renew Checked Items" />
|
|
<input type="submit" name="renew_all" value="Renew All" />
|
|
</div>
|
|
<!-- /TMPL_IF -->
|
|
</form>
|
|
<!-- TMPL_ELSE -->
|
|
<p>Patron has nothing checked out.</p>
|
|
<!-- /TMPL_IF -->
|
|
</div>
|
|
|
|
|
|
<div id="reserves">
|
|
<!-- TMPL_IF NAME="reservloop" -->
|
|
<table>
|
|
<tr>
|
|
<th>Hold date</th>
|
|
<th>Status</th>
|
|
<th>Title</th>
|
|
<th>Author</th>
|
|
<th>Call Number</th>
|
|
</tr>
|
|
<!-- TMPL_LOOP NAME="reservloop" -->
|
|
<tr class="<!-- TMPL_VAR NAME="color" -->">
|
|
<td>
|
|
<!-- TMPL_VAR NAME="reservedate" -->
|
|
</td>
|
|
<td>
|
|
<!-- TMPL_IF name="barcodereserv" --><!-- TMPL_VAR NAME="barcodereserv" -->
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF NAME="waitingposition" -->
|
|
Hold priority
|
|
<b> <!-- TMPL_VAR NAME="waitingposition" --> </b>
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td>
|
|
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=<!-- TMPL_VAR NAME="biblionumber" -->"><!-- TMPL_VAR NAME="title" --></a> (<b> <!-- TMPL_VAR NAME="itemtype" --> </b>)
|
|
|
|
<!-- TMPL_IF name="waiting" -->
|
|
<br />
|
|
<i>This hold is available</i>
|
|
<!-- /TMPL_IF -->
|
|
<!-- TMPL_IF name="transfered" -->
|
|
<br />
|
|
<i>This hold has been transfered from library
|
|
<!-- TMPL_VAR NAME="frombranch" --> on <!-- TMPL_VAR NAME="datesent" --> </i>
|
|
<!-- /TMPL_IF -->
|
|
|
|
<!-- TMPL_IF name="nottransfered" -->
|
|
<br />
|
|
<i>This hold hasn't been transfered yet from library <!-- TMPL_VAR NAME="nottransferedby" --></i>
|
|
<!-- /TMPL_IF -->
|
|
</td>
|
|
<td><!-- TMPL_VAR NAME="author" --></td>
|
|
<td><!-- TMPL_VAR NAME="itemcallnumber" --></td>
|
|
</tr>
|
|
<!-- /TMPL_LOOP -->
|
|
</table>
|
|
<!-- TMPL_ELSE -->
|
|
<p>Patron has no pending holds.</p>
|
|
<!-- /TMPL_IF -->
|
|
</div> <!-- reservesloop -->
|
|
|
|
<!-- /TMPL_IF --> <!-- borrowernumber -->
|
|
</div></div>
|
|
<!--/TMPL_IF -->
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<!-- TMPL_UNLESS NAME="CGIselectborrower" --><div class="yui-b">
|
|
<!-- TMPL_INCLUDE NAME="circ-menu.inc" -->
|
|
</div><!-- /TMPL_UNLESS -->
|
|
</div>
|
|
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
|