0a71367dc2
The labels for emails on the patron forms say 'primary' and 'secondary.' This patch does the same thing for the phones. phone is now 'Primary phone', mobile is now 'Secondary phone', and 'phonepro' is now 'Other phone'. This way the type of phone does not matter and the phone that the patron wants to be called at the most is the 'primary.' This is just a step in the direction of fixing Bug 5252, not a complete fix. This patch also updated a stray reference to Home Email. Both the OPAC and staff client are updated with this patch. Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com> Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
626 lines
28 KiB
Text
626 lines
28 KiB
Text
[% INCLUDE 'doc-head-open.inc' %]
|
|
<title>Koha › Patrons › [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron Details for [% firstname %] [% surname %] ([% cardnumber %])[% END %]</title>
|
|
[% INCLUDE 'doc-head-close.inc' %]
|
|
[% INCLUDE 'calendar.inc' %]
|
|
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.tablesorter.min.js"></script>
|
|
<script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
|
|
<script type="text/JavaScript" language="JavaScript">
|
|
//<![CDATA[
|
|
$.tablesorter.addParser({
|
|
id: 'articles',
|
|
is: function(s) {return false; },
|
|
format: function(s) { return s.toLowerCase().replace(/^(the|an|a) /,''); },
|
|
type: 'text'
|
|
});
|
|
$(document).ready(function() {
|
|
$('#finesholdsissues > ul').tabs();
|
|
$.tablesorter.defaults.widgets = ['zebra'];
|
|
$("#issuest").tablesorter({[% IF ( dateformat_metric ) %]
|
|
dateFormat: 'uk',[% END %]
|
|
headers: { 1: { sorter: 'articles' }}
|
|
});
|
|
$("#relissuest").tablesorter({[% IF ( dateformat_metric ) %]
|
|
dateFormat: 'uk',[% END %]
|
|
headers: { 1: { sorter: 'articles' }}
|
|
});
|
|
$("#holdst").tablesorter({[% IF ( dateformat_metric ) %]
|
|
dateFormat: 'uk',[% END %]
|
|
sortList: [[0,0]],
|
|
headers: { 1: { sorter: 'articles' },6: { sorter: false }}
|
|
});
|
|
[% IF ( picture ) %]
|
|
// new YAHOO.widget.Button("delpicture"); // FIXME: formatting mismatch between YUI and normal button
|
|
$('#delpicture').click(function(){
|
|
return confirm(_('Are you sure you want to delete this patron image? This cannot be undone.'));
|
|
});
|
|
$('#manage-patron-image').find("input[value*=Upload]").click(function(){
|
|
if($("#uploadfile").val() == ""){
|
|
alert(_("Please choose a file to upload"));
|
|
return false;
|
|
}
|
|
return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
|
|
});[% END %]
|
|
$("#renew_all" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
|
|
$("#CheckAllitems" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
|
|
$("#CheckNoitems" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
|
$("#CheckAllreturns").click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
|
$("#CheckNoreturns" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
|
|
|
|
$("#relrenew_all" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
|
|
$("#relCheckAllitems" ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]" ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
|
|
$("#relCheckNoitems" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
|
$("#relCheckAllreturns").click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
|
|
$("#relCheckNoreturns" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
|
|
|
|
|
|
[% IF ( CAN_user_circulate_override_renewals ) %]
|
|
[% IF ( AllowRenewalLimitOverride ) %]
|
|
$( '#override_limit' ).click( function () {
|
|
if ( this.checked ) {
|
|
$( '.renewals-allowed' ).show(); $( '.renewals-disabled' ).hide();
|
|
} else {
|
|
$( '.renewals-allowed' ).hide(); $( '.renewals-disabled' ).show();
|
|
}
|
|
} ).attr( 'checked', false );
|
|
[% END %]
|
|
[% END %]
|
|
$("td").click(function(e){
|
|
if(e.target.tagName.toLowerCase() == 'td'){
|
|
$(this).find("input:checkbox").each( function() {
|
|
$(this).attr('checked', !$(this).attr('checked'));
|
|
if($(this).attr('checked')){
|
|
$(this).parent().siblings().find("input:checkbox").each(function(){
|
|
if($(this).attr('checked')){ $(this).attr('checked',''); }
|
|
});
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
function uncheck_sibling(me){
|
|
nodename=me.getAttribute("name");
|
|
if (nodename =="barcodes[]"){
|
|
var Node=me.parentNode.previousSibling;
|
|
while (Node.nodeName!="TD"){Node=Node.previousSibling}
|
|
var Nodes=Node.childNodes;
|
|
for (var i=0;i<Nodes.length;i++){
|
|
if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
|
|
Nodes[i].checked=false;
|
|
}
|
|
}
|
|
|
|
}else {
|
|
var Node=me.parentNode.nextSibling;
|
|
while (Node.nodeName!="TD"){Node=Node.nextSibling}
|
|
var Nodes=Node.childNodes;
|
|
for (var i=0;i<Nodes.length;i++){
|
|
if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
|
|
Nodes[i].checked=false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function validate1(date) {
|
|
var today = new Date();
|
|
if ( date < today ) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
};
|
|
//]]>
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
[% INCLUDE 'header.inc' %]
|
|
[% INCLUDE 'patron-search.inc' %]
|
|
|
|
<div id="breadcrumbs">
|
|
<a href="/cgi-bin/koha/mainpage.pl">Home</a>
|
|
› <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
|
|
› [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron Details for [% firstname %] [% surname %] ([% cardnumber %])[% END %]
|
|
</div>
|
|
|
|
<div id="doc3" class="yui-t1">
|
|
|
|
<div id="bd">
|
|
<div id="yui-main">
|
|
<div class="yui-b">
|
|
[% INCLUDE 'members-toolbar.inc' %]
|
|
[% IF ( error ) %]
|
|
<div class="dialog alert">
|
|
[% IF ( AUTH_UPDATE_FAILED ) %]
|
|
<h3>Userid / Password update failed</h3>
|
|
<strong>Insufficient privileges.</strong>
|
|
<p>Other fields updated.</p>
|
|
[% END %]
|
|
[% IF ( CANT_DELETE_STAFF ) %]
|
|
<h3>Unable to delete staff user</h3>
|
|
<p>Insufficient privileges.</p>
|
|
[% END %]
|
|
[% IF ( CANT_DELETE_OTHERLIBRARY ) %]
|
|
<h3>Unable to delete patrons from other libraries with current settings</h3>
|
|
<p>Insufficient privileges.</p>
|
|
[% END %]
|
|
[% IF ( CANT_DELETE ) %]
|
|
<h3>Unable to delete patron</h3>
|
|
<p>Insufficient privileges.</p>
|
|
[% END %]
|
|
</div>
|
|
[% END %]
|
|
<div class="yui-g">
|
|
|
|
[% IF ( unknowuser ) %]
|
|
<div class="dialog message">This patron does not exist.</div>
|
|
[% ELSE %]
|
|
[% IF ( reregistration ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry %]</div>[% END %]
|
|
|
|
[% IF ( flagged ) %]
|
|
<ul>
|
|
[% IF ( debarred ) %]
|
|
<li>Patron is restricted
|
|
<form class="inline compact" action="/cgi-bin/koha/members/setdebar.pl" method="post">
|
|
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
|
|
<input type="hidden" name="status" value="0" />
|
|
<input type="submit" value="Lift Restriction" />
|
|
</form>
|
|
</li>
|
|
[% END %]
|
|
[% IF ( gonenoaddress ) %]<li>Patron's address is in doubt.</li>[% END %]
|
|
[% IF ( lost ) %]<li>Patron's card has been reported lost.</li>[% END %]
|
|
</ul>
|
|
[% END %]
|
|
|
|
<h3>[% UNLESS ( I ) %]
|
|
[% title %] [% firstname %] [% END %] [% surname %] ([% cardnumber %])</h3>
|
|
<div class="yui-u first">
|
|
<div id="patron-information" style="padding : .5em;">
|
|
|
|
[% UNLESS ( I ) %][% IF ( othernames ) %]“[% othernames %]”[% END %]
|
|
|
|
<p class="address">[% streetnumber %]
|
|
[% IF ( roaddetails ) %]
|
|
[% roaddetails %],
|
|
[% END %]
|
|
[% address %]<br />
|
|
[% IF ( address2 ) %][% address2 %]<br />[% END %]
|
|
[% IF ( city ) %][% city %][% END %]
|
|
[% IF ( state ) %][% state %][% END %]
|
|
[% IF ( zipcode ) %][% zipcode %]<br />[% END %]
|
|
[% IF ( country ) %][% country %][% END %]</p>
|
|
|
|
<div class="rows">
|
|
<ol>
|
|
[% IF ( I ) %]
|
|
[% IF ( phonepro ) %]<li><span class="label">Organization phone: </span>[% phonepro %]</li>[% END %]
|
|
[% IF ( emailpro ) %]<li><span class="label">Organization email: </span>[% emailpro %]</li>[% END %]
|
|
[% ELSE %]
|
|
[% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
|
|
[% IF ( mobile ) %]<li><span class="label">Secondary phone: </span>[% mobile %]</li>[% END %]
|
|
[% IF ( phonepro ) %]<li><span class="label">Other phone: </span>[% phonepro %]</li>[% END %]
|
|
[% END %]
|
|
|
|
[% IF ( P ) %]
|
|
[% IF ( phone ) %]<li><span class="label">Primary phone: </span>[% phone %]</li>[% END %]
|
|
[% IF ( mobile ) %]<li><span class="label">Secondary phone: </span>[% mobile %]</li>[% END %]
|
|
[% END %]
|
|
[% IF ( fax ) %]<li><span class="label">Fax: </span>[% fax %]</li>[% END %]
|
|
[% UNLESS ( I ) %]
|
|
[% IF ( email ) %]<li><span class="label">Primary email:</span><a href="mailto:[% email %]">[% email %]</a></li>[% END %]
|
|
[% IF ( emailpro ) %]<li><span class="label">Secondary email: </span><a href="mailto:[% emailpro %]">[% emailpro %]</a></li>[% END %]
|
|
[% END %]
|
|
<li><span class="label">Initials: </span>[% initials %]</li>
|
|
<li><span class="label">Date of birth:</span>[% dateofbirth %]</li>
|
|
<li><span class="label">Gender:</span>
|
|
[% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
|
|
</li>[% END %]
|
|
[% IF ( printethnicityline ) %]
|
|
<li><span class="label">Ethnicity:</span>[% ethnicity %]</li>
|
|
<li><span class="label">Ethnicity notes: </span>[% ethnotes %]</li>
|
|
[% END %]
|
|
[% IF ( isguarantee ) %]
|
|
[% IF ( guaranteeloop ) %]
|
|
<li><span class="label">Guarantees:</span><ul>[% FOREACH guaranteeloo IN guaranteeloop %]<li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guaranteeloo.borrowernumber %]">[% guaranteeloo.name %] </a></li>[% END %]</ul></li>
|
|
[% END %]
|
|
[% ELSE %]
|
|
[% IF ( guarantorborrowernumber ) %]
|
|
<li><span class="label">Guarantor:</span><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantorborrowernumber %]">[% guarantorsurname %], [% guarantorfirstname %]</a></li>
|
|
[% END %]
|
|
[% END %]
|
|
</ol>
|
|
</div>
|
|
<div class="action">
|
|
[% IF ( guarantorborrowernumber ) %]
|
|
<a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=1&guarantorid=[% guarantorborrowernumber %]">Edit</a>
|
|
[% ELSE %]
|
|
<a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=1">Edit</a>
|
|
[% END %]</div>
|
|
|
|
</div>
|
|
|
|
<!-- Begin Upload Patron Image Section -->
|
|
|
|
<div id="manage-patron-image">
|
|
[% IF ( patronimages ) %]
|
|
[% IF ( CAN_user_tools_batch_upload_patron_images ) %]
|
|
<form method="post" action="/cgi-bin/koha/tools/picture-upload.pl" enctype="multipart/form-data">
|
|
<fieldset class="brief">
|
|
[% IF ( picture ) %]
|
|
<legend>Manage Patron Image</legend>
|
|
<div class="hint">To update the image for [% title %] [% surname %], select a new image file and click 'Upload.' <br />Click the 'Delete' button to remove the current image.
|
|
[% ELSE %]
|
|
<legend>Upload Patron Image</legend>
|
|
<div class="hint">[% title %] [% firstname %] [% surname %] does not currently have an image available. To import an image for [% title %] [% surname %], enter the name of an image file to upload.
|
|
[% END %]
|
|
<br />Only PNG, GIF, JPEG, XPM formats are supported.
|
|
</div>
|
|
<input type="hidden" id="image" name="filetype" value="image" />
|
|
<input type="hidden" id="cardnumber" name="cardnumber" value="[% cardnumber %]" />
|
|
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
|
|
<ol>
|
|
<li>
|
|
<label for="uploadfile">Select the file to upload: </label><input type="file" id="uploadfile" name="uploadfile" />
|
|
</li>
|
|
</ol>
|
|
<fieldset class="action">
|
|
<input type="submit" value="Upload" class="submit" />
|
|
<input name="op" type="hidden" value="Upload" />
|
|
[% IF ( picture ) %]<a id="delpicture" href="/cgi-bin/koha/tools/picture-upload.pl?op=Delete&cardnumber=[% cardnumber %]&borrowernumber=[% borrowernumber %]" class="delete">Delete</a>[% END %]
|
|
</fieldset>
|
|
</fieldset>
|
|
</form>
|
|
[% END %]
|
|
[% END %]
|
|
</div>
|
|
|
|
<!-- End Upload Patron Image Section -->
|
|
|
|
[% IF ( ExtendedPatronAttributes ) %]
|
|
[% UNLESS ( no_patron_attribute_types ) %]
|
|
<div id="patron-extended-attributes" style="padding-top: 1em;">
|
|
<h3>Additional attributes and identifiers</h3>
|
|
<table>
|
|
<tr>
|
|
<th>Type</th>
|
|
<th>Value</th>
|
|
</tr>
|
|
[% FOREACH patron_attribute IN patron_attributes %]
|
|
<tr>
|
|
<td>[% patron_attribute.code %] ([% patron_attribute.description %])</td>
|
|
<td>[% patron_attribute.value %]
|
|
[% IF ( patron_attribute.value_description ) %]
|
|
([% patron_attribute.value_description %])
|
|
[% END %]
|
|
</td>
|
|
</tr>
|
|
[% END %]
|
|
</table>
|
|
</div>
|
|
<div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=4">Edit</a></div>
|
|
[% END %]
|
|
[% END %]
|
|
|
|
[% IF ( EnhancedMessagingPreferences ) %]
|
|
<div id="patron-messaging-prefs" style="padding-top: 1em;">
|
|
<h3>Patron messaging preferences</h3>
|
|
[% INCLUDE 'messaging-preference-form.inc' %]
|
|
[% IF ( SMSSendDriver ) %]
|
|
<div class="rows"> <ol><li><span class="label">SMS number:</span>[% SMSnumber %]
|
|
</li></ol></div>
|
|
[% END %]
|
|
</div>
|
|
<div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=5">Edit</a></div>
|
|
[% END %]
|
|
|
|
</div>
|
|
<div class="yui-u">
|
|
<div id="patron-library-details">
|
|
<h3>Library use</h3>
|
|
<div class="rows">
|
|
<ol>
|
|
<li><span class="label">Card number: </span>[% cardnumber %]</li>
|
|
<li><span class="label">Borrowernumber: </span> [% borrowernumber %]</li>
|
|
<li><span class="label">Category: </span>[% description %] ([% categorycode %])</li>
|
|
<li><span class="label">Registration date: </span>[% dateenrolled %]</li>
|
|
|
|
<li><span class="label">Expiration date: </span>
|
|
[% IF ( reregistration ) %]
|
|
<strong class="reregistrinfo">[% dateexpiry %]</span>
|
|
[% ELSE %]
|
|
[% dateexpiry %]
|
|
[% END %]
|
|
</li>
|
|
|
|
<li><span class="label">Library: </span>[% branchname %]</li>
|
|
|
|
[% IF ( OPACPrivacy ) %]<li><span class="label">Privacy Pref:</span>
|
|
[% IF ( privacy0 ) %]Forever[% END %]
|
|
[% IF ( privacy1 ) %]Default[% END %]
|
|
[% IF ( privacy2 ) %]Never[% END %]
|
|
</li>[% END %]
|
|
[% IF ( sort1 ) %]<li><span class="label">Sort field 1:</span>[% lib1 %]</li>[% END %]
|
|
[% IF ( sort2 ) %]<li><span class="label">Sort field 2:</span>[% lib2 %]</li>[% END %]
|
|
<li><span class="label">Username: </span>[% userid %]</li>
|
|
<li><span class="label">Password: </span>
|
|
[% IF ( password ) %]
|
|
*******
|
|
[% ELSE %]
|
|
<span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% borrowernumber %]">Undefined</a></span>
|
|
[% END %]
|
|
</li>
|
|
[% IF ( borrowernotes ) %]<li><span class="label">Circulation note: </span>[% borrowernotes %]</li>[% END %]
|
|
[% IF ( opacnote ) %]<li><span class="label">OPAC note:</span>[% opacnote %]</li>[% END %]
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
<div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=3">Edit</a></div>
|
|
|
|
[% UNLESS ( I ) %]
|
|
<div id="patron-alternate-address" style="padding-top: 1em;">
|
|
<h3>Alternate Address</h3>
|
|
<div class="rows"> <ol><li><span class="label">Address: </span>[% B_address %]</li>
|
|
<li><span class="label">Address 2: </span>[% B_address2 %]</li>
|
|
<li><span class="label">City: </span>[% B_city %]</li>
|
|
[% IF ( B_state ) %]<li><span class="label">State: </span>[% B_state %]</li>[% END %]
|
|
<li><span class="label">Zip/Postal Code: </span>[% B_zipcode %]</li>
|
|
<li><span class="label">Country: </span>[% B_country %]</li>
|
|
[% IF ( B_phone ) %]<li><span class="label">Phone: </span>[% B_phone %]</li>[% END %]
|
|
[% IF ( B_email ) %]<li><span class="label">Email: </span>[% B_email %]</li>[% END %]</ol></div>
|
|
</div>
|
|
<div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=6">Edit</a></div>
|
|
[% END %]
|
|
|
|
<div id="patron-alternative-contact" style="padding-top: 1em;">
|
|
<h3>Alternative Contact</h3>
|
|
<div class="rows"> <ol><li><span class="label">Surname: </span>[% altcontactsurname %]</li>
|
|
<li><span class="label">First name: </span>[% altcontactfirstname %]</li>
|
|
<li><span class="label">Address: </span>[% altcontactaddress1 %]</li>
|
|
<li><span class="label">Address 2: </span>[% altcontactaddress2 %]</li>
|
|
<li><span class="label">City: </span>[% altcontactaddress3 %]</li>
|
|
[% IF ( altcontactstate ) %]<li><span class="label">State: </span>[% altcontactstate %]</li>[% END %]
|
|
<li><span class="label">Zip/Postal Code: </span>[% altcontactzipcode %]</li>
|
|
<li><span class="label">Country: </span>[% altcontactcountry %]</li>
|
|
<li><span class="label">Phone: </span>[% altcontactphone %]</li></ol></div>
|
|
</div>
|
|
<div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=2">Edit</a></div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="finesholdsissues" class="toptabs">
|
|
<ul>
|
|
<li><a href="/cgi-bin/koha/members/moremember.pl#checkedout">[% issuecount %] Checkout(s)</a></li>
|
|
[% IF ( relissuecount ) %]
|
|
<li><a href="/cgi-bin/koha/members/moremember.pl#relissues">Relatives' Checkouts</a></li>
|
|
[% END %]
|
|
<li><a href="/cgi-bin/koha/members/moremember.pl#finesandcharges">Fines & Charges</a></li>
|
|
<li>[% IF ( countreserv ) %]
|
|
<a href="/cgi-bin/koha/members/moremember.pl#onhold">[% countreserv %] Hold(s)</a>
|
|
[% ELSE %]
|
|
<a href="/cgi-bin/koha/members/moremember.pl#onhold">0 Holds</a>
|
|
[% END %]</li>
|
|
</ul>
|
|
|
|
<div id="finesandcharges">
|
|
[% IF ( totaldue_raw ) %]
|
|
<p>Total due: [% totaldue %]</p>
|
|
[% ELSE %]
|
|
<p>No outstanding charges</p>
|
|
[% END %]
|
|
</div>
|
|
|
|
<form action="/cgi-bin/koha/reserve/renewscript.pl" method="post" class="checkboxed">
|
|
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
|
|
<input type="hidden" name="branch" value="[% branch %]" />
|
|
<div id="checkedout">
|
|
[% IF ( issueloop ) %]
|
|
<table id="issuest">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Due date</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Item Type</th>
|
|
<th scope="col">Checked out on</th>
|
|
<th scope="col">Call no</th>
|
|
<th scope="col">Charge</th>
|
|
<th scope="col">Price</th>
|
|
<th scope="col">Renew <p class="column-tool"><a href="#" id="CheckAllitems">select all</a> | <a href="#" id="CheckNoitems">none</a></p></th>
|
|
<th scope="col">Check in <p class="column-tool"><a href="#" id="CheckAllreturns">select all</a> | <a href="#" id="CheckNoreturns">none</a></p></th>
|
|
</tr></thead>
|
|
[% INCLUDE 'checkouts-table-footer.inc' %]
|
|
<tbody>
|
|
[% FOREACH issueloo IN issueloop %]
|
|
|
|
[% IF ( issueloo.overdue ) %]
|
|
<tr class="problem">
|
|
[% ELSE %]
|
|
<tr>
|
|
[% END %]
|
|
<td[% IF ( issueloo.red ) %] class="od"[% END %]>[% issueloo.date_due %]
|
|
[% IF ( issueloo.itemlost ) %]
|
|
<span class="lost">[% issueloo.itemlost %]</span>
|
|
[% END %]
|
|
[% IF ( issueloo.damaged ) %]
|
|
<span class="dmg">[% issueloo.itemdamaged %]</span>
|
|
[% END %]
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% issueloo.biblionumber %]"><strong>[% issueloo.title |html %]</strong></a>[% IF ( issueloo.author ) %], by [% issueloo.author %][% END %] [% IF ( issueloo.publishercode ) %]; [% issueloo.publishercode %] [% END %] [% IF ( issueloo.publicationyear ) %], [% issueloo.publicationyear %][% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% issueloo.biblionumber %]&itemnumber=[% issueloo.itemnumber %]#item[% issueloo.itemnumber %]">[% issueloo.barcode %]</a></td>
|
|
<td>[% UNLESS ( noItemTypeImages ) %] [% IF ( issueloo.itemtype_image ) %]<img src="[% issueloo.itemtype_image %]" alt="" />[% END %][% END %][% issueloo.itemtype_description %]</td>
|
|
<td>[% issueloo.issuedate %]</td>
|
|
<td>[% issueloo.itemcallnumber %]</td>
|
|
<td>[% issueloo.charge %]</td>
|
|
<td>[% issueloo.replacementprice %]</td>
|
|
[% IF ( issueloo.renew_failed ) %]
|
|
<td class="problem">Renewal Failed</td>
|
|
[% ELSE %]
|
|
<td><span style="padding: 0 1em;">[% IF ( issueloo.renewals ) %][% issueloo.renewals %][% ELSE %]0[% END %]</span>
|
|
[% IF ( issueloo.norenew ) %]
|
|
[% IF ( issueloo.can_confirm ) %]<span class="renewals-allowed" style="display: none">
|
|
<input type="checkbox" name="all_items[]" value="[% issueloo.itemnumber %]" checked="checked" style="display: none;" />
|
|
[% IF ( issueloo.od ) %]
|
|
<input type="checkbox" name="items[]" value="[% issueloo.itemnumber %]" checked="checked" />
|
|
[% ELSE %]
|
|
<input type="checkbox" name="items[]" value="[% issueloo.itemnumber %]" />
|
|
[% END %]
|
|
</span>
|
|
<span class="renewals-disabled">
|
|
[% END %]
|
|
[% IF ( issueloo.norenew_reason_on_reserve ) %]
|
|
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% issueloo.biblionumber %]">On Hold</a>
|
|
[% END %]
|
|
[% IF ( issueloo.norenew_reason_too_many ) %]
|
|
Not Renewable
|
|
[% END %]
|
|
[% IF ( issueloo.can_confirm ) %]
|
|
</span>
|
|
[% END %]
|
|
[% ELSE %]
|
|
<input type="checkbox" name="all_items[]" value="[% issueloo.itemnumber %]" checked="checked" style="display: none;" />
|
|
[% IF ( issueloo.red ) %]
|
|
<input type="checkbox" name="items[]" value="[% issueloo.itemnumber %]" checked="checked" onclick="uncheck_sibling(this);" />
|
|
[% ELSE %]
|
|
<input type="checkbox" name="items[]" value="[% issueloo.itemnumber %]" onclick="uncheck_sibling(this);" />
|
|
[% END %]
|
|
[% END %]
|
|
</td>
|
|
[% END %]
|
|
[% IF ( issueloo.return_failed ) %]
|
|
<td class="problem">Checkin Failed</td>
|
|
[% ELSE %]
|
|
[% IF ( issueloo.norenew_reason_on_reserve ) %]
|
|
<td><a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% issueloo.biblionumber %]">On Hold</a></td>
|
|
[% ELSE %]
|
|
<td><input type="checkbox" name="barcodes[]" value="[% issueloo.barcode %]" onclick="uncheck_sibling(this);" />
|
|
<input type="checkbox" name="all_barcodes[]" value="[% issueloo.barcode %]" checked="checked" style="display: none;" />
|
|
</td>
|
|
[% END %]
|
|
[% END %]
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
<fieldset class="action">
|
|
[% IF ( CAN_user_circulate_override_renewals ) %]
|
|
[% IF ( AllowRenewalLimitOverride ) %]
|
|
<label for="override_limit">Override Renewal Limit:</label>
|
|
<input type="checkbox" name="override_limit" id="override_limit" value="1" />
|
|
[% END %]
|
|
[% END %]
|
|
<input type="submit" name="renew_checked" value="Renew or Return checked items" />
|
|
<input type="submit" id="renew_all" name="renew_all" value="Renew all" />
|
|
</fieldset>
|
|
[% ELSE %]<p>Patron has nothing checked out.</p>
|
|
[% END %]
|
|
</div>
|
|
|
|
|
|
[% IF ( relissuecount ) %]
|
|
<div id="relissues">
|
|
<table id="relissuest">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Due date</th>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Item Type</th>
|
|
<th scope="col">Checked out on</th>
|
|
<th scope="col">Call no</th>
|
|
<th scope="col">Charge</th>
|
|
<th scope="col">Price</th>
|
|
<th scope="col">Patron</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
[% FOREACH relissueloo IN relissueloop %]
|
|
|
|
[% IF ( relissueloo.overdue ) %]
|
|
<tr class="problem">
|
|
[% ELSE %]
|
|
<tr>
|
|
[% END %]
|
|
<td[% IF ( relissueloo.red ) %] class="od"[% END %]>[% relissueloo.date_due %]
|
|
[% IF ( relissueloo.itemlost ) %]
|
|
<span class="lost">[% relissueloo.itemlost %]</span>
|
|
[% END %]
|
|
[% IF ( relissueloo.damaged ) %]
|
|
<span class="dmg">[% relissueloo.itemdamaged %]</span>
|
|
[% END %]
|
|
</td>
|
|
<td><a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% relissueloo.biblionumber %]"><strong>[% relissueloo.title |html %]</strong></a>[% IF relissueloo.author %], by [% relissueloo.author %][% END %] [% IF relissueloo.publishercode %]; [% relissueloo.publishercode %] [% END %] [% IF relissueloo.publicationyear %], [% relissueloo.publicationyear %][% END %] <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% relissueloo.biblionumber %]&itemnumber=[% relissueloo.itemnumber %]#item[% relissueloo.itemnumber %]">[% relissueloo.barcode %]</a></td>
|
|
<td>[% UNLESS ( noItemTypeImages ) %] [% IF ( relissueloo.itemtype_image ) %]<img src="[% relissueloo.itemtype_image %]" alt="" />[% END %][% END %][% relissueloo.itemtype_description %]</td>
|
|
<td>[% relissueloo.issuedate %]</td>
|
|
<td>[% relissueloo.itemcallnumber %]</td>
|
|
<td>[% relissueloo.charge %]</td>
|
|
<td>[% relissueloo.replacementprice %]</td>
|
|
<td><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% relissueloo.borrowernumber %]">[% relissueloo.borrowername %] ([% relissueloo.cardnumber %])</a></td>
|
|
</tr>
|
|
[% END %]
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
[% END %]
|
|
</form>
|
|
|
|
<div id="onhold">
|
|
[% IF ( reservloop ) %]
|
|
<form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
|
|
<input type="hidden" name="from" value="borrower" />
|
|
<table id="holdst">
|
|
<thead><tr>
|
|
<th>Hold date</th>
|
|
<th>Title</th>
|
|
<th>Call Number</th>
|
|
<th>Barcode</th>
|
|
<th>Priority</th>
|
|
<th>Delete?</th>
|
|
</tr></thead>
|
|
<tbody>[% FOREACH reservloo IN reservloop %]
|
|
<tr class="[% reservloo.color %]">
|
|
<td>[% reservloo.reservedate %]</td>
|
|
<td>
|
|
<a href="/cgi-bin/koha/reserve/request.pl?biblionumber=[% reservloo.biblionumber %]">[% reservloo.title |html %]</a>[% IF ( reservloo.author ) %], by [% reservloo.author %][% END %]
|
|
</td>
|
|
<td>[% reservloo.itemcallnumber %]</td>
|
|
<td>[% IF ( reservloo.waiting ) %]
|
|
<em>Item is <strong>waiting</strong></em>
|
|
[% END %]
|
|
[% IF ( reservloo.transfered ) %]
|
|
<em>Item <strong>in transit</strong> from
|
|
[% reservloo.frombranch %] since [% reservloo.datesent %] </em>
|
|
[% END %]
|
|
|
|
[% IF ( reservloo.nottransfered ) %]
|
|
<em>Item hasn't been transferred yet from [% reservloo.nottransferedby %]</em>
|
|
[% END %]
|
|
[% IF ( reservloo.barcodereserv ) %]
|
|
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% reservloo.biblionumber %]">[% reservloo.barcodereserv %]</a>
|
|
[% END %]
|
|
</td>
|
|
<td>[% IF ( reservloo.waitingposition ) %]<strong>[% reservloo.waitingposition %]</strong>[% END %]</td>
|
|
<td><select name="rank-request">
|
|
<option value="n">No</option>
|
|
<option value="del">Yes</option>
|
|
</select>
|
|
<input type="hidden" name="biblionumber" value="[% reservloo.biblionumber %]" />
|
|
<input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
|
|
</td>
|
|
</tr>
|
|
[% END %]</tbody>
|
|
</table>
|
|
|
|
<fieldset class="action"><input type="submit" class="cancel" name="submit" value="Cancel Marked Requests" /></fieldset>
|
|
</form>
|
|
[% ELSE %]<p>Patron has nothing on hold.</p>[% END %]
|
|
</div>
|
|
|
|
</div>
|
|
[% END %] <!-- unknowuser -->
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<div class="yui-b">
|
|
[% INCLUDE 'circ-menu.inc' %]
|
|
</div>
|
|
</div>
|
|
[% INCLUDE 'intranet-bottom.inc' %]
|