3 [% USE AuthorisedValues %]
4 [% USE ColumnsSettings %]
5 [% IF Koha.Preference('ExportRemoveFields') OR Koha.Preference('ExportWithCsvProfile') %]
6 [% SET exports_enabled = 1 %]
8 [% INCLUDE 'doc-head-open.inc' %]
9 <title>Koha › Patrons ›
10 [% IF ( unknowuser ) %]
13 Patron details for [% INCLUDE 'patron-title.inc' %]
16 [% INCLUDE 'doc-head-close.inc' %]
17 [% INCLUDE 'calendar.inc' %]
18 <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
19 [% INCLUDE 'datatables.inc' %]
20 [% INCLUDE 'columns_settings.inc' %]
21 [% INCLUDE 'strings.inc' %]
22 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
23 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery-ui-timepicker-addon.min.js"></script>
24 [% INCLUDE 'timepicker.inc' %]
25 <script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.rowGrouping.js"></script>
26 <script type="text/javascript" src="[% interface %]/[% theme %]/js/pages/circulation.js"></script>
27 <script type="text/javascript" src="[% interface %]/[% theme %]/js/checkouts.js"></script>
28 <script type="text/javascript" src="[% interface %]/[% theme %]/js/holds.js"></script>
29 <script type="text/JavaScript">
31 /* Set some variable needed in circulation.js */
32 var interface = "[% interface %]";
33 var theme = "[% theme %]";
34 var borrowernumber = "[% borrowernumber %]";
35 var branchcode = "[% branch %]";
36 var exports_enabled = "[% exports_enabled %]";
37 var AllowCirculate = [% (CAN_user_circulate_circulate_remaining_permissions)? 1 : 0 %]
38 var AllowRenewalLimitOverride = [% (CAN_user_circulate_override_renewals && Koha.Preference('AllowRenewalLimitOverride') )? 1: 0 %];
39 var script = "moremember";
40 var relatives_borrowernumbers = new Array();
41 [% FOREACH b IN relatives_borrowernumbers %]
42 relatives_borrowernumbers.push("[% b %]");
45 var MSG_EXPORT_SELECT_CHECKOUTS = _("You must select checkout(s) to export");
47 columns_settings = [% ColumnsSettings.GetColumns( 'members', 'moremember', 'issues-table', 'json' ) %]
49 $(document).ready(function() {
50 $('#finesholdsissues').tabs({
51 // Correct table sizing for tables hidden in tabs
52 // http://www.datatables.net/examples/api/tabs_and_scrolling.html
53 "show": function(event, ui) {
54 var oTable = $('div.dataTables_wrapper>table', ui.panel).dataTable();
55 if ( oTable.length > 0 ) {
56 oTable.fnAdjustColumnSizing();
59 "activate": function( event, ui ) {
60 $('#'+ui.newTab.context.id).click();
63 $("#holdst").dataTable($.extend(true, {}, dataTablesDefaults, {
66 { "aTargets": [ -1,-2 ], "bSortable": false, "bSearchable": false }
69 { "sType": "title-string" },{ "sType": "anti-the" },null,null,null,null,null,null
74 // new YAHOO.widget.Button("delpicture"); // FIXME: formatting mismatch between YUI and normal button
75 $('#delpicture').click(function(){
76 return confirm(_("Are you sure you want to delete this patron image? This cannot be undone."));
78 $('#manage-patron-image').find("input[value*=Upload]").click(function(){
79 if($("#uploadfile").val() == ""){
80 alert(_("Please choose a file to upload"));
83 return confirm(_("Are you sure you want to replace the current patron image? This cannot be undone."));
86 $("#suspend_until").datepicker({
87 onClose: function(dateText, inst) {
88 validate_date(dateText, inst);
90 minDate: 1, // require that hold suspended until date is after today
93 $("#view_restrictions").on("click",function(){
94 $('#debarments-tab-link').click();
97 function uncheck_sibling(me){
98 nodename=me.getAttribute("name");
99 if (nodename =="barcodes[]"){
100 var Node=me.parentNode.previousSibling;
101 while (Node.nodeName!="TD"){Node=Node.previousSibling}
102 var Nodes=Node.childNodes;
103 for (var i=0;i < Nodes.length;i++){
104 if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
105 Nodes[i].checked=false;
110 var Node=me.parentNode.nextSibling;
111 while (Node.nodeName!="TD"){Node=Node.nextSibling}
112 var Nodes=Node.childNodes;
113 for (var i=0;i<Nodes.length;i++){
114 if (Nodes[i].nodeName=="INPUT" && Nodes[i].getAttribute("type")=="checkbox"){
115 Nodes[i].checked=false;
120 function validate1(date) {
121 var today = new Date();
122 if ( date < today ) {
132 <body id="pat_moremember" class="pat">
133 [% INCLUDE 'header.inc' %]
134 [% INCLUDE 'patron-search.inc' %]
136 <div id="breadcrumbs">
137 <a href="/cgi-bin/koha/mainpage.pl">Home</a>
138 › <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a>
139 › [% IF ( unknowuser ) %]Patron does not exist[% ELSE %]Patron details for [% INCLUDE 'patron-title.inc' %][% END %]
142 <div id="doc3" class="yui-t2">
148 [% UNLESS ( unknowuser ) %]
149 [% INCLUDE 'members-toolbar.inc' %]
153 <div class="dialog alert">
154 [% IF ( error == 'CANT_DELETE_STAFF' ) %]
155 <h3>Unable to delete staff user</h3>
156 <p>Insufficient privileges.</p>
158 [% IF ( error == 'CANT_DELETE_YOURSELF' ) %]
159 <h3>Not allowed to delete own account</h3>
160 <p>Deleting your own account would lock you out of Koha.</p>
162 [% IF ( error == 'CANT_DELETE_OTHERLIBRARY' ) %]
163 <h3>Unable to delete patrons from other libraries with current settings</h3>
164 <p>Insufficient privileges.</p>
166 [% IF ( error == 'CANT_DELETE' ) %]
167 <h3>Unable to delete patron</h3>
168 <p>Insufficient privileges.</p>
174 [% IF ( unknowuser ) %]
175 <div class="dialog message">This patron does not exist. <a href="/cgi-bin/koha/members/members-home.pl">Find another patron?</a></div>
177 [% IF ( was_renewed ) %]<div class="dialog message">Patron's account has been renewed until [% dateexpiry | $KohaDates %]</div>[% END %]
180 [% INCLUDE 'blocked-fines.inc' %]
184 <div id="circmessages" class="circmessage attention">
186 [% IF ( userdebarred ) %]
187 <li class="blocker">Patron's account is restricted
188 [% IF ( userdebarreddate ) %]
189 until [% userdebarreddate %]
192 [% IF ( debarredcomment ) %]
193 with the explanation: <i>
194 [% IF debarredcomment.search('OVERDUES_PROCESS') %]
195 Restriction added by overdues process [% debarredcomment.remove('OVERDUES_PROCESS ') | html_line_break %]
197 [% debarredcomment | html_line_break %]
201 <a href="#reldebarments" id="view_restrictions">View restrictions</a>
204 [% IF ( gonenoaddress ) %]<li class="blocker">Patron's address is in doubt.</li>[% END %]
205 [% IF ( lost ) %]<li class="blocker">Patron's card has been reported lost.</li>[% END %]
210 <h3>[% UNLESS ( I ) %]
211 [% title %] [% firstname %] [% END %] [% surname %] ([% cardnumber %])</h3>
212 <div class="yui-u first">
213 <div id="patron-information" style="padding : .5em;">
215 [% UNLESS ( I ) %][% IF ( othernames ) %]“[% othernames %]”[% END %]
217 <div class = "address">
218 [% IF Koha.Preference( 'AddressFormat' ) %]
219 [% INCLUDE "member-display-address-style-${ Koha.Preference( 'AddressFormat' ) }.inc" %]
221 [% INCLUDE 'member-display-address-style-us.inc' %]
228 [% IF ( phonepro ) %]<li><span class="label">Organization phone: </span><a href="tel:[% phonepro %]">[% phonepro %]</a></li>[% END %]
229 [% IF ( emailpro ) %]<li class="email"><span class="label">Organization email: </span>[% emailpro %]</li>[% END %]
231 [% IF ( phone ) %]<li><span class="label">Primary phone: </span><a href="tel:[% phone %]">[% phone %]</a></li>[% END %]
232 [% IF ( phonepro ) %]<li><span class="label">Secondary phone: </span><a href="tel:[% phonepro %]">[% phonepro %]</a></li>[% END %]
233 [% IF ( mobile ) %]<li><span class="label">Other phone: </span><a href="tel:[% mobile %]">[% mobile %]</a></li>[% END %]
237 [% IF ( phone ) %]<li><span class="label">Primary phone: </span><a href="tel:[% phone %]">[% phone %]</a></li>[% END %]
238 [% IF ( mobile ) %]<li><span class="label">Other phone: </span><a href="tel:[% mobile %]">[% mobile %]</a></li>[% END %]
240 [% IF ( fax ) %]<li><span class="label">Fax: </span>[% fax %]</li>[% END %]
242 [% IF ( email ) %]<li class="email"><span class="label">Primary email:</span><a title="[% email %]" href="mailto:[% email %]">[% email %]</a></li>[% END %]
243 [% IF ( emailpro ) %]<li class="email"><span class="label">Secondary email: </span><a title="[% emailpro %]" href="mailto:[% emailpro %]">[% emailpro %]</a></li>[% END %]
245 [% IF ( initials ) %]<li><span class="label">Initials: </span>[% initials %]</li>[% END %]
246 [% IF ( dateofbirth ) %]<li><span class="label">Date of birth:</span>[% dateofbirth | $KohaDates %] ([% age %] years)</li>[% END %]
247 [% IF ( sex ) %]<li><span class="label">Gender:</span>
248 [% IF ( sex == 'F' ) %]Female[% ELSIF ( sex == 'M' ) %]Male[% ELSE %][% sex %][% END %]
249 </li>[% END %][% END %]
252 <span class="label">Guarantees:</span>
254 [% FOREACH guarantee IN guarantees %]
255 <li><a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantee.borrowernumber %]">[% guarantee.firstname %] [% guarantee.surname %]</a></li>
259 [% ELSIF guarantor %]
261 <span class="label">Guarantor:</span>
262 [% IF guarantor.borrowernumber %]
263 <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% guarantor.borrowernumber %]">[% guarantor.firstname %] [% guarantor.surname %]</a>
265 [% guarantor.firstname %] [% guarantor.surname %]
272 [% IF ( guarantorborrowernumber ) %]
273 <a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=1&guarantorid=[% guarantorborrowernumber %]">Edit</a>
275 <a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=1">Edit</a>
280 <!-- Begin Upload Patron Image Section -->
282 <div id="manage-patron-image">
283 [% IF ( patronimages ) %]
284 [% IF ( CAN_user_tools_batch_upload_patron_images ) %]
285 <form method="post" action="/cgi-bin/koha/tools/picture-upload.pl" enctype="multipart/form-data">
286 <fieldset class="brief">
288 <legend>Manage patron image</legend>
289 <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.
291 <legend>Upload patron image</legend>
292 <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.
294 <br />Only PNG, GIF, JPEG, XPM formats are supported.
296 <input type="hidden" id="image" name="filetype" value="image" />
297 <input type="hidden" id="cardnumber" name="cardnumber" value="[% cardnumber %]" />
298 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
301 <label for="uploadfile">Select the file to upload: </label><input type="file" id="uploadfile" name="uploadfile" />
304 <fieldset class="action">
305 <input type="submit" value="Upload" class="submit" />
306 <input name="op" type="hidden" value="Upload" />
307 [% IF ( picture ) %]<a id="delpicture" href="/cgi-bin/koha/tools/picture-upload.pl?op=Delete&borrowernumber=[% borrowernumber %]" class="delete">Delete</a>[% END %]
315 <!-- End Upload Patron Image Section -->
317 [% IF ( ExtendedPatronAttributes ) %]
318 [% UNLESS ( no_patron_attribute_types ) %]
319 <div id="patron-extended-attributes" style="padding-top: 1em;">
320 <h3>Additional attributes and identifiers</h3>
321 [% FOREACH attribute IN attributes_loop %]
322 [% IF attribute.class %]
323 <div id="aai_[% attribute.class %]" class="rows">
325 <div id="aai" class="rows">
327 <h4>[% attribute.lib %]</h4>
329 [% FOREACH item IN attribute.items %]
331 <span class="label">[% item.description %]: </span>
332 [% IF ( item.value_description ) %]
333 [% item.value_description %]
335 [% item.value| html_line_break %]
343 <div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=4">Edit</a></div>
347 [% IF ( EnhancedMessagingPreferences ) %]
348 <div id="patron-messaging-prefs" style="padding-top: 1em;">
349 <h3>Patron messaging preferences</h3>
350 [% INCLUDE 'messaging-preference-form.inc' %]
351 [% IF ( SMSSendDriver ) %]
352 <div class="rows"> <ol><li><span class="label">SMS number:</span><a href="sms:[% SMSnumber %]">[% SMSnumber %]</a>
356 <div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=5">Edit</a></div>
361 <div id="patron-library-details">
365 <li><span class="label">Card number: </span>[% cardnumber %]</li>
366 <li><span class="label">Borrowernumber: </span> [% borrowernumber %]</li>
367 <li><span class="label">Category: </span>[% description %] ([% categorycode %])</li>
368 <li><span class="label">Registration date: </span>[% dateenrolled | $KohaDates %]</li>
370 <li><span class="label">Expiration date: </span>
371 [% IF ( was_renewed ) %]
372 <strong class="reregistrinfo">[% dateexpiry | $KohaDates %]</strong>
374 [% dateexpiry | $KohaDates %]
378 <li><span class="label">Library: </span>[% branchname %]</li>
380 [% IF ( OPACPrivacy ) %]<li><span class="label">Privacy Pref:</span>
381 [% IF ( privacy0 ) %]Forever[% END %]
382 [% IF ( privacy1 ) %]Default[% END %]
383 [% IF ( privacy2 ) %]Never[% END %]
387 <span class="label">Show checkouts to guarantor</span>
388 [% IF privacy_guarantor_checkouts %]
395 [% IF ( sort1 ) %]<li><span class="label">Sort field 1:</span>[% lib1 %]</li>[% END %]
396 [% IF ( sort2 ) %]<li><span class="label">Sort field 2:</span>[% lib2 %]</li>[% END %]
397 <li><span class="label">Username: </span>[% userid %]</li>
398 <li><span class="label">Password: </span>
399 [% IF ( password ) %]
402 <span class="problem"><a href="/cgi-bin/koha/members/member-password.pl?member=[% borrowernumber %]">Undefined</a></span>
405 [% IF ( borrowernotes ) %]<li><span class="label">Circulation note: </span>[% borrowernotes %]</li>[% END %]
406 [% IF ( opacnote ) %]<li><span class="label">OPAC note:</span>[% opacnote %]</li>[% END %]
407 [% IF Koha.Preference( 'NorwegianPatronDBEnable' ) == 1 %]
408 [% IF ( sync == 1 ) %]
409 <li><span class="label">Activate sync: </span>Yes</li>
410 [% IF ( syncstatus ) %]<li><span class="label">Sync status: </span>[% syncstatus %]</li>[% END %]
411 [% IF ( lastsync ) %]<li><span class="label">Last sync: </span>[% lastsync | $KohaDates %]</li>[% END %]
413 <li><span class="label">Activate sync: </span>No</li>
416 [% IF ( Koha.Preference('CheckPrevCheckout') == 'softyes' || Koha.Preference('CheckPrevCheckout') == 'softno' ) %]
417 <li><span class="label">Check previous checkouts: </span>
418 [% IF ( checkprevcheckout == 'yes' ) %]
420 [% ELSIF ( checkprevcheckout == 'no' ) %]
430 <div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=3">Edit</a></div>
433 <div id="patron-alternate-address" style="padding-top: 1em;">
434 <h3>Alternate address</h3>
436 [% IF Koha.Preference( 'AddressFormat' ) %]
437 [% INCLUDE "member-display-alt-address-style-${ Koha.Preference( 'AddressFormat' ) }.inc" %]
439 [% INCLUDE 'member-display-alt-address-style-us.inc' %]
442 <div class="rows"> <ol>
443 [% IF ( B_phone ) %]<li><span class="label">Phone: </span><a href="tel:[% B_phone %]">[% B_phone %]</a></li>[% END %]
444 [% IF ( B_email ) %]<li class="email"><span class="label">Email: </span><a title="[% B_email %]" href="mailto:[% B_email %]">[% B_email %]</a></li>[% END %]
445 [% IF ( contactnote ) %]<li><span class="label">Contact note: </span> [% contactnote %]</li>[% END %]
449 <div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=6">Edit</a></div>
452 <div id="patron-alternative-contact" style="padding-top: 1em;">
453 <h3>Alternative contact</h3>
454 <div class="rows"> <ol><li><span class="label">Surname: </span>[% altcontactsurname %]</li>
455 <li><span class="label">First name: </span>[% altcontactfirstname %]</li>
456 <li><span class="label">Address: </span>[% altcontactaddress1 %]</li>
457 <li><span class="label">Address 2: </span>[% altcontactaddress2 %]</li>
458 <li><span class="label">City: </span>[% altcontactaddress3 %]</li>
459 [% IF ( altcontactstate ) %]<li><span class="label">State: </span>[% altcontactstate %]</li>[% END %]
460 <li><span class="label">ZIP/Postal code: </span>[% altcontactzipcode %]</li>
461 [% IF ( altcontactcountry ) %]<li><span class="label">Country: </span>[% altcontactcountry %]</li>[% END %]
462 [% IF ( altcontactphone ) %]<li><span class="label">Phone: </span><a href="tel:[% altcontactphone %]">[% altcontactphone %]</a></li>[% END %]
465 <div class="action"><a href="memberentry.pl?op=modify&borrowernumber=[% borrowernumber %]&step=2">Edit</a></div>
470 <div id="finesholdsissues" class="toptabs">
472 <li><a href="#checkouts">[% issuecount %] Checkout(s)</a></li>
473 [% IF relatives_issues_count %]
474 <li><a href="#relatives-issues" id="relatives-issues-tab">Relatives' checkouts</a></li>
476 <li><a href="#finesandcharges">Fines & Charges</a></li>
478 [% IF ( holds_count ) %]
479 <a href="#reserves" id="holds-tab">[% holds_count %] Hold(s)</a>
481 <a href="#reserves" id="holds-tab">0 Holds</a>
484 <li><a id="debarments-tab-link" href="#reldebarments">[% debarments.size %] Restrictions</a></li>
487 [% INCLUDE "checkouts-table.inc" %]
489 [% IF ( relatives_issues_count ) %]
490 <div id="relatives-issues">
491 <table id="relatives-issues-table" style="width: 100% !Important;">
494 <th scope="col">Due date hidden not formatted</th>
495 <th scope="col">Due date</th>
496 <th scope="col">Title</th>
497 <th scope="col">Item type</th>
498 <th scope="col">Location</th>
499 <th scope="col">Checked out on</th>
500 <th scope="col">Checked out from</th>
501 <th scope="col">Call no</th>
502 <th scope="col">Charge</th>
503 <th scope="col">Fine</th>
504 <th scope="col">Price</th>
505 <th scope="col">Patron</th>
512 <div id="finesandcharges">
513 [% IF ( totaldue_raw ) %]
514 <p>Total due: [% totaldue %]</p>
516 <p>No outstanding charges</p>
520 [% INCLUDE borrower_debarments.inc %]
523 [% IF ( holds_count ) %]
524 <form action="/cgi-bin/koha/reserve/modrequest.pl" method="post">
525 <input type="hidden" name="from" value="circ" />
526 <table id="holds-table" style="width: 100% !Important;">
542 <fieldset class="action">
543 <input type="submit" class="cancel" name="submit" value="Cancel marked holds" />
547 [% IF SuspendHoldsIntranet %]
548 <fieldset class="action">
549 <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
550 <input type="hidden" name="from" value="borrower" />
551 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
552 <input type="submit" value="Suspend all holds" />
554 [% IF AutoResumeSuspendedHolds %]
555 <label for="suspend_until">until</label>
556 <input type="text" size="10" id="suspend_until" name="suspend_until datepicker"/>
557 <span class="hint">Specify date on which to resume [% INCLUDE 'date-format.inc' %]: </span>
562 <fieldset class="action">
563 <form action="/cgi-bin/koha/reserve/modrequest_suspendall.pl" method="post">
564 <input type="hidden" name="from" value="borrower" />
565 <input type="hidden" name="borrowernumber" value="[% borrowernumber %]" />
566 <input type="hidden" name="suspend" value="0" />
567 <input type="submit" value="Resume all suspended holds" />
570 [% END # IF SuspendHoldsIntranet %]
572 [% ELSE %]<p>Patron has nothing on hold.</p>[% END %]
576 [% END %] <!-- unknowuser -->
582 [% INCLUDE 'circ-menu.inc' %]
585 [% INCLUDE 'intranet-bottom.inc' %]