Bug 30578: Remove circ/ysearch.pl in favor of the /patrons REST API route
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / includes / patron-search.inc
1 [% USE Koha %]
2 [% USE I18N %]
3 [% USE Branches %]
4 [% USE raw %]
5 [% USE Asset %]
6 [% USE To %]
7
8 [%# Display a simple form %]
9 [% BLOCK patron_search_filters_simple  %]
10     <form id="patron_search_form">
11         <div class="hint">Enter patron card number or partial name:</div>
12         <input type="text" size="40" id="search_patron_filter" class="focus" autocomplete="off" />
13         <input type="submit" value="Search" />
14     </form>
15 [% END %]
16
17 [%# Display a complex patron search form %]
18 [%# - Search: <input> %]
19 [%# You can then pass a list of filters %]
20 [%# - branch: <select library list> %]
21 [%# - category: <select patron category list> %]
22 [%# - search_field: <select patron field list> %]
23 [%# - search_type: <select "contain" or "start with"> %]
24 [% BLOCK patron_search_filters %]
25     <form id="patron_search_form">
26         <fieldset class="brief">
27             <h3>Search for patron</h3>
28             <ol>
29                 <li>
30                     <label for="search_patron_filter">Search:</label>
31                     <input type="text" id="search_patron_filter" value="[% search_filter | html %]" class="focus" />
32                 </li>
33
34                 [% FOR f IN filters %]
35                     [% SWITCH f %]
36                     [% CASE 'branch' %]
37                         <li>
38                             <label for="branchcode_filter">Library:</label>
39                             <select id="branchcode_filter">
40                                 [% SET libraries = Branches.all( only_from_group => 1 ) %]
41                                 [% IF libraries.size != 1 %]
42                                     <option value="">Any</option>
43                                 [% END %]
44                                 [% FOREACH l IN libraries %]
45                                     <option value="[% l.branchcode | html %]">[% l.branchname | html %]</option>
46                                 [% END %]
47                             </select>
48                         </li>
49                     [% CASE 'category' %]
50                         <li>
51                             <label for="categorycode_filter">Category:</label>
52                             <select id="categorycode_filter">
53                                 <option value="">Any</option>
54                                 [% FOREACH category IN categories %]
55                                     <option value="[% category.categorycode | html %]">[% category.description | html %]</option>
56                                 [% END %]
57                             </select>
58                         </li>
59                     [% CASE 'search_field' %]
60                         <li>
61                             <label for="searchfieldstype_filter">Search field:</label>
62                             <select name="searchfieldstype" id="searchfieldstype_filter">
63                                 [% SET standard = Koha.Preference('DefaultPatronSearchFields') || 'firstname,middle_name,surname,othernames,cardnumber,userid' %]
64                                 [% default_fields = [ standard, 'surname', 'cardnumber', 'email', 'borrowernumber', 'userid', 'phone', 'address', 'dateofbirth', 'sort1', 'sort2' ] %]
65                                 [% search_options = default_fields.merge(standard.split(',')).unique %]
66                                 [% FOREACH s_o IN search_options %]
67                                     [% display_name = PROCESS patron_fields name=s_o %]
68                                     [% NEXT IF !display_name %]
69                                     [% IF searchfieldstype == s_o %]
70                                         <option selected="selected" value=[% s_o | html %]>[% display_name | $raw %]</option>
71                                     [% ELSE %]
72                                         <option value=[% s_o | html %]>[% display_name | $raw %]</option>
73                                     [% END %]
74                                 [% END %]
75                             </select>
76                         </li>
77                     [% CASE 'search_type' %]
78                         <li>
79                             <label for="searchtype_filter">Search type:</label>
80                             <select name="searchtype" id="searchtype_filter">
81                               [% IF searchtype == "start_with" %]
82                                 <option value='start_with' selected="selected">Starts with</option>
83                                 <option value="contain">Contains</option>
84                               [% ELSE %]
85                                 <option value='start_with'>Starts with</option>
86                                 <option value="contain" selected="selected">Contains</option>
87                               [% END %]
88                             </select>
89                         </li>
90                     [% END %]
91                 [% END %]
92             </ol>
93             <fieldset class="action">
94                 <input type="submit" value="Search" />
95                 <input type="button" value="Clear" id="clear_search" />
96             </fieldset>
97         </fieldset>
98     </form>
99 [% END %]
100
101 [%# Display the table with: %]
102 [%# - At the top a hint about a possible filter %]
103 [%# - Browse by last name %]
104 [%# - The table %]
105 [%# Get the following parameters: %]
106 [%# - filter: can be 'suggestions_managers', 'orders_managers', 'funds_owners' or 'funds_users' to filter patrons on their permissions %]
107 [%# - table_id: the ID of the table %]
108 [%# open_on_row_click: See patron_search_js %]
109 [%# columns: See patron_search_js %]
110 [% BLOCK patron_search_table %]
111
112     [% IF filter == 'suggestions_managers' %]
113         <div class="hint">Only staff with superlibrarian or suggestions_manage permissions are returned in the search results</div>
114     [% ELSIF filter == 'orders_managers' %]
115         <div class="hint">Only staff with superlibrarian or acquisitions permissions (or order_manage permission if granular permissions are enabled) are returned in the search results</div>
116     [% ELSIF filter == 'funds_owners' OR filter == 'funds_users' %]
117         <div class="hint">Only staff with superlibrarian or acquisitions permissions (or budget_modify permission if granular permissions are enabled) are returned in the search results</div>
118     [% END %]
119
120     <div class="browse">
121         Browse by last name:
122         [% SET alphabet = Koha.Preference('alphabet').split(' ') %]
123         [% UNLESS alphabet.size %]
124             [% alphabet = ['A' .. 'Z'] %]
125         [% END %]
126         [% FOREACH letter IN alphabet %]
127             <a href="#" class="filterByLetter">[% letter | html %]</a>
128         [% END %]
129     </div>
130
131
132     <h3 style="display: none;">Patrons found for: <span id="searchpattern"></span></h3>
133
134     <div id="[% table_id | html %]_search_results" style="display:none;">
135
136         <div id="info" class="dialog message" style="display: none;"></div>
137         <div id="error" class="dialog alert" style="display: none;"></div>
138
139         <input type="hidden" id="firstletter_filter" value="" />
140         [% IF open_on_row_click %]
141         <table id="[% table_id | html %]" class="selections-table">
142         [% ELSE %]
143         <table id="[% table_id | html %]">
144         [% END %]
145             <thead>
146                 <tr>
147                     [% FOR column IN columns %]
148                         [% SWITCH column %]
149                             [% CASE 'checkbox' %]<th class="noExport"></th>
150                             [% CASE 'cardnumber' %]<th>Card</th>
151                             [% CASE 'dateofbirth' %]<th>Date of birth</th>
152                             [% CASE 'name' %]<th>Name</th>
153                             [% CASE 'name-address' %]<th>Name</th>
154                             [% CASE 'address' %]<th>Address</th>
155                             [% CASE 'address-library' %]<th>Address</th>
156                             [% CASE 'branch' %]<th data-filter="libraries">Library</th>
157                             [% CASE 'category' %]<th data-filter="categories">Category</th>
158                             [% CASE 'dateexpiry' %]<th>Expires on</td>
159                             [% CASE 'borrowernotes' %]<th>Notes</th>
160                             [% CASE 'phone' %]<th>Phone</th>
161                             [% CASE 'checkouts' %]<th>Checkouts</th>
162                             [% CASE 'account_balance' %]<th>Fines</th>
163                             [% CASE 'action' %]<th>&nbsp;</th>
164                         [% END %]
165                     [% END %]
166                 </tr>
167               </thead>
168             <tbody></tbody>
169         </table>
170     </div>
171
172 <!-- Patron preview modal -->
173 <div class="modal" id="patronPreview" tabindex="-1" role="dialog" aria-labelledby="patronPreviewLabel">
174     <div class="modal-dialog" role="document">
175         <div class="modal-content">
176             <div class="modal-header">
177                 <button type="button" class="closebtn" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
178                 <h4 class="modal-title" id="patronPreviewLabel"></h4>
179             </div>
180             <div class="modal-body">
181                 <div id="loading">
182                     <img src="[% interface | html %]/[% theme | html %]/img/spinner-small.gif" alt="" /> Loading
183                 </div>
184             </div>
185             <div class="modal-footer">
186                 <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
187             </div>
188         </div>
189     </div>
190 </div>
191
192 [% END %]
193
194 [%# Integrate all the JS code, outside of a script tag %]
195 [%# Get the following parameters: %]
196 [%# - redirect_if_one_result: Redirect to the patron if the search returns only one result, note that it will not redirect if filters of the DT are used (this is a feature) %]
197 [%# - redirect_url: The URL to use, the borrowernumber parameter will be added %]
198 [%# - redirect_if_attribute_equal: Name of the attribute to use for the redirect. Query using this attribute, before the normal search %]
199 [%# filter: Same as patron_search_table %]
200 [%# open_on_row_click: boolean, default off. Will allow to select a patron by clicking on the whole tr element %]
201 [%# columns: list of columns that will be displayed. Possible values are: 'checkbox', 'cardnumber', 'dateofbirth', 'address', 'name', 'name-address', 'branch', 'category', 'dateexpiry', 'borrowernotes, 'phone', 'checkouts', 'account_balance', 'action' %]
202 [%# preview_on_name_click: Open a modal window with patron's info when the name is clicked %]
203 [%# actions: list of buttons to display in the action column. Possible values are: 'select', 'add', 'edit', 'checkout' %]
204 [%# sticky_header and sticky_to: If we need a sticky header %]
205 [%# callback: name of the JS function that will be called when a patron is selected. Only work with action=select %]
206 [%# display_search_description: boolean, default off. Display the description of the search %]
207 [% BLOCK patron_search_js %]
208
209     [% IF redirect_if_one_result && !redirect_url %]
210         <script>console.log("Wrong call of patron_searh_js - missing redirect_url");</script>
211     [% END %]
212     <script>
213         let categories = [% To.json(categories) | $raw %].map(e => {
214             e['_id'] = e.categorycode;
215             e['_str'] = e.description;
216             return e;
217         });
218         let categories_map = categories.reduce((map, e) => {
219             map[e._id] = e;
220             return map;
221         }, {});
222         let libraries  = [% To.json(libraries) | $raw %].map(e => {
223             e['_id'] = e.branchcode;
224             e['_str'] = e.branchname;
225             return e;
226         });
227         let libraries_map = libraries.reduce((map, e) => {
228             map[e._id] = e;
229             return map;
230         }, {});
231
232         [% IF Koha.Preference('ExtendedPatronAttributes') && extended_attribute_types %]
233             let extended_attribute_types = [% To.json(extended_attribute_types || []) | $raw %];
234         [% END %]
235
236     </script>
237
238     [% INCLUDE 'datatables.inc' %]
239     [% INCLUDE 'js-patron-get-age.inc' %]
240     [% INCLUDE 'js-patron-format.inc' %]
241     [% INCLUDE 'js-patron-format-address.inc' %]
242     [% IF sticky_header %]
243         [% Asset.js("lib/hc-sticky.js") | $raw %]
244     [% END %]
245
246     <script>
247         var first_draw = 0;
248         let patrons_table;
249         var Sticky;
250         var singleBranchMode = '[% singleBranchMode | html %]';
251         let logged_in_library_id = "[% Branches.GetLoggedInBranchcode | html %]";
252         [% IF do_not_defer_loading %]
253             let defer_loading = 0;
254         [% ELSE %]
255             let defer_loading = 1;
256         [% END %]
257
258         /* popstate event triggered by forward and back button. Need to refresh search */
259         window.addEventListener('popstate', (event) => {
260             getSearchByLocation( false );
261         });
262
263         [% SWITCH filter %]
264         [% CASE 'suggestions_managers' %]
265             let patron_search_url = '/api/v1/suggestions/managers';
266         [% CASE 'baskets_managers' %]
267             let patron_search_url = '/api/v1/acquisitions/baskets/managers';
268         [% CASE 'funds_owners' %]
269             let patron_search_url = '/api/v1/acquisitions/funds/owners';
270         [% CASE 'funds_users' %]
271             let patron_search_url = '/api/v1/acquisitions/funds/users';
272         [% CASE %]
273             let patron_search_url = '/api/v1/patrons';
274         [% END %]
275         $(document).ready(function(){
276
277             $("#info").hide();
278             $("#error").hide();
279
280             // Build the aLengthMenu
281             var aLengthMenu = [
282                 [% Koha.Preference('PatronsPerPage') | html %], 10, 20, 50, 100, -1
283             ];
284             jQuery.unique(aLengthMenu);
285             aLengthMenu.sort(function( a, b ){
286                 // Put "All" at the end
287                 if ( a == -1 ) {
288                     return 1;
289                 } else if ( b == -1 ) {
290                     return -1;
291                 }
292                 return parseInt(a) < parseInt(b) ? -1 : 1;}
293             );
294             var aLengthMenuLabel = [];
295             $(aLengthMenu).each(function(){
296                 if ( this == -1 ) {
297                     // Label for -1 is "All"
298                     aLengthMenuLabel.push(_("All"));
299                 } else {
300                     aLengthMenuLabel.push(this);
301                 }
302             });
303
304             let additional_filters = {
305                 surname: function(){
306                     let start_with = $("#firstletter_filter").val()
307                     if (!start_with) return "";
308                     return { "like": start_with + "%" }
309                 },
310                 "-and": function(){
311                     let pattern = $("#search_patron_filter").val();
312                     if (!pattern) return "";
313                     let patterns = pattern.split(' ').filter(function(s){ return s.length });
314
315                     let filters = [];
316                     let search_type = $("#searchtype_filter").val() || "contain";
317                     let search_fields = $("#searchfieldstype_filter").val();
318                     if ( !search_fields ) {
319                         search_fields = "[% Koha.Preference('DefaultPatronSearchFields') || 'firstname,middle_name,surname,othernames,cardnumber,userid' | html %]";
320                     }
321
322                     let subquery_and = [];
323                     patterns.forEach(function(pattern,i){
324                         let sub_or = [];
325                         search_fields.split(',').forEach(function(attr,ii){
326                             sub_or.push({["me."+attr]:{"like":(search_type == "contain" ? "%" : "" ) + pattern + "%"}});
327                         });
328                         subquery_and.push(sub_or);
329                     });
330                     filters.push({"-and": subquery_and});
331
332                     [% IF Koha.Preference('ExtendedPatronAttributes') && extended_attribute_types %]
333                         subquery_and = [];
334                         patterns.forEach(function(pattern,i){
335                             let sub_or = [];
336                             sub_or.push({
337                                 "extended_attributes.value": { "like": "%" + pattern + (search_type == "contain" ? "%" : "" )},
338                                 "extended_attributes.code": extended_attribute_types
339                             });
340                             subquery_and.push(sub_or);
341                         });
342                         filters.push({"-and": subquery_and});
343                     [% END %]
344                     return filters;
345                 }
346             };
347
348             [% UNLESS default_sort_column %]
349                 [% default_sort_column = "name" %]
350             [% END %]
351             [% SET order_column_index = 0 %]
352             [% SET embed = ['extended_attributes'] %]
353             patrons_table = $("#[% table_id | html %]").kohaTable({
354                 "ajax": {
355                     "url": patron_search_url,
356                     "dataSrc": function ( json ) {
357                         [% IF redirect_if_one_result %]
358                             // redirect if there is only 1 result.
359                             if ( first_draw && json.recordsFiltered == 1 ) {
360                                 let url = '[% redirect_url | url %]'.indexOf("?") != -1
361                                     ? '[% redirect_url | url %]&borrowernumber=' + json.data[0].patron_id
362                                     : '[% redirect_url | url %]?borrowernumber=' + json.data[0].patron_id;
363                                 document.location.href = url;
364                                 return false;
365                             }
366                             first_draw = 0;
367                         [% END %]
368                         return json.data;
369                     }
370                 },
371                 [% IF open_on_row_click OR preview_on_name_click %]
372                 "drawCallback": function( settings ) {
373                     var api = this.api();
374                     var data = api.data();
375                     if ( data.length == 0 ) return;
376
377                     [% IF open_on_row_click %]
378                     $.each($(this).find("tbody tr"), function(index, tr) {
379                         let url = "[% on_click_url | url %]&borrowernumber=" + data[index].patron_id;
380                         $(tr).off('click').on('click', function() {
381                             document.location.href = url;
382                         }).addClass('clickable');
383                         $(tr).find("a.patron_name").attr('href', url);
384                     });
385                     [% END %]
386                     [% IF preview_on_name_click %]
387                     $.each($(this).find("tbody tr"), function(index, tr) {
388                         $(tr).find("a.patron_name").addClass("patron_preview");
389                     });
390                     [% END %]
391                 },
392                 [% END %]
393                 "iDeferLoading": defer_loading,
394                 "columns": [
395                     [% FOR column IN columns %]
396                         [% IF default_sort_column == column %]
397                             [% order_column_index = loop.count - 1%]
398                         [% END %]
399                         [% SWITCH column %]
400                             [% CASE 'checkbox' %]
401                             {
402                                 "data": "patron_id",
403                                 "searchable": false,
404                                 "orderable": false,
405                                 "render": function( data, type, row, meta ) {
406                                     return "<label for='check" + data + "' class='content_hidden'>" + _("Select patron") + "</label><input type='checkbox' id='check" + data + "' class='selection' name='borrowernumber' value='" + data + "' />";
407                                 }
408                             }
409                             [% CASE 'cardnumber' %]
410                             {
411                                 "data": "cardnumber",
412                                 "searchable": true,
413                                 "orderable": true,
414                                 "render": function( data, type, row, meta ) {
415                                     let patron_id = encodeURIComponent(row.patron_id);
416                                     [% IF !open_on_row_click AND CAN_user_circulate_circulate_remaining_permissions %]
417                                         return "<a href=\"/cgi-bin/koha/circ/circulation.pl?borrowernumber=" + patron_id + "\" title=\"[% I18N.t("Check out") | html %]\" class=\"patron_name\" data-borrowernumber=\"" + patron_id + "\" style=\"white-space:nowrap\">" + escape_str(data) + "</a>";
418                                     [% ELSE %]
419                                         return escape_str(data);
420                                     [% END %]
421                                 }
422
423                             }
424                             [% CASE 'dateofbirth' %]
425                             {
426                                 "data": "date_of_birth",
427                                 "searchable": true,
428                                 "orderable": true,
429                                 "render": function( data, type, row, meta ) {
430                                     return data ? escape_str($date(data) + " (" + _("%s years").format($get_age(data)) + ")") : "";
431                                 }
432                             }
433                             [% CASE 'address' %]
434                             {
435                                 "data": "me.street_number:me.address:me.address2:me.city:me.state:me.postal_code:me.country",
436                                 "searchable": true,
437                                 "orderable": true,
438                                  "render": function( data, type, row, meta ) {
439                                     let r = '<div class="address"><ul>';
440                                     r += $format_address(row, { no_line_break: 1 });
441                                     r += '</div></ul>';
442                                     return r;
443                                 }
444                             }
445                             [% CASE 'address-library' %]
446                             {
447                                 "data": "me.street_number:me.address:me.address2:me.city:me.state:me.postal_code:me.country",
448                                 "searchable": true,
449                                 "orderable": true,
450                                 "render": function( data, type, row, meta ) {
451                                     let r = '<div class="address"><ul>';
452                                     r += $format_address(row, { no_line_break: 1 });
453                                     r += '</div></ul>';
454                                     r += " " + escape_str(libraries_map[row.library_id].branchname);
455                                     return r;
456                                 }
457                             }
458                             [% CASE 'name-address' %]
459                             {
460                                 "data": "me.surname:me.firstname:me.middle_name:me.othernames:me.street_number:me.address:me.address2:me.city:me.state:me.postal_code:me.country",
461                                 "searchable": true,
462                                 "orderable": true,
463                                 "render": function( data, type, row, meta ) {
464                                     let patron_id = encodeURIComponent(row.patron_id);
465                                     let r = '';
466                                     [% IF ! open_on_row_click %]
467                                     r += "<a href=\"/cgi-bin/koha/members/moremember.pl?borrowernumber=" + patron_id + "\" class=\"patron_name\" data-borrowernumber=\"" + patron_id + "\" style=\"white-space:nowrap\">" + $patron_to_html(row, { invert_name: 1 }) + "</a>";
468                                     [% ELSE %]
469                                     r += $patron_to_html(row, { invert_name: 1 });
470                                     [% END %]
471                                     r += '<br/>';
472                                     r += '<div class="address"><ul>';
473                                     r += $format_address(row, { no_line_break: 1 });
474
475                                     if ( row.email ) {
476                                         r += "<li>" + _("Email: ") + "<a href='mailto:" + encodeURIComponent(row.email) + "'>" + escape_str(row.email) + "</a></li>";
477                                     }
478                                     r += '</ul></div>'
479
480                                     return r;
481                                 }
482                             }
483                             [% CASE 'name-address' %]
484                             {
485                                 "data": "me.surname:me.firstname:me.othernames:me.street_number:me.address:me.address2:me.city:me.state:me.postal_code:me.country",
486                                 "searchable": true,
487                                 "orderable": true,
488                                 "render": function( data, type, row, meta ) {
489                                     let patron_id = encodeURIComponent(row.patron_id);
490                                     let r = '';
491                                     [% IF ! open_on_row_click %]
492                                     r += "<a href=\"/cgi-bin/koha/members/moremember.pl?borrowernumber=" + patron_id + "\" class=\"patron_name\" data-borrowernumber=\"" + patron_id + "\" style=\"white-space:nowrap\">" + $patron_to_html(row, { invert_name: 1 }) + "</a>";
493                                     [% ELSE %]
494                                     r += $patron_to_html(row, { invert_name: 1 });
495                                     [% END %]
496                                     r += '<br/>';
497                                     r += '<div class="address"><ul>';
498                                     r += $format_address(row, { no_line_break: 1 });
499
500                                     if ( row.email ) {
501                                         r += "<li>" + _("Email: ") + "<a href='mailto:" + encodeURIComponent(row.email) + "'>" + escape_str(row.email) + "</a></li>";
502                                     }
503                                     r += '</ul></div>'
504
505                                     return r;
506                                 }
507                             }
508                             [% CASE 'name' %]
509                             {
510                                 "data": "me.surname:me.firstname:me.middle_name:me.othernames",
511                                 "searchable": true,
512                                 "orderable": true,
513                                 "render": function( data, type, row, meta ) {
514                                     let patron_id = encodeURIComponent(row.patron_id);
515                                     [% IF ! open_on_row_click %]
516                                     return "<a href=\"/cgi-bin/koha/members/moremember.pl?borrowernumber=" + patron_id + "\" class=\"patron_name\" data-borrowernumber=\"" + patron_id + "\" style=\"white-space:nowrap\">" + $patron_to_html(row, { invert_name: 1 }) + "</a>";
517                                     [% ELSE %]
518                                     return $patron_to_html(row, { invert_name: 1 });
519                                     [% END %]
520                                 }
521                             }
522                             [% CASE 'branch' %]
523                             {
524                                 "data": "library_id",
525                                 "searchable": true,
526                                 "orderable": true,
527                                 "render": function( data, type, row, meta ) {
528                                     let library_name = libraries_map[data].branchname
529                                     if( !singleBranchMode && data == logged_in_library_id ) {
530                                         return "<span class=\"currentlibrary\">" + escape_str(library_name) + "</span>";
531                                     } else {
532                                         return escape_str(library_name);
533                                     }
534                                 }
535                             }
536                             [% CASE 'category' %]
537                             {
538                                 "data": "category_id",
539                                 "searchable": true,
540                                 "orderable": true,
541                                 "render": function( data, type, row, meta ) {
542                                     return escape_str(categories_map[data].description);
543                                 }
544                             }
545                             [% CASE 'dateexpiry' %]
546                             {
547                                 "data": "expiry_date",
548                                 "searchable": true,
549                                 "orderable": true,
550                                 "render": function( data, type, row, meta ) {
551                                     return data ? escape_str($date(data)) : "";
552                                 }
553                             }
554                             [% CASE 'borrowernotes' %]
555                             {
556                                 "data": "staff_notes",
557                                 "searchable": true,
558                                 "orderable": true,
559                                 [%# We don't escape here, we allow html tag in staff notes %]
560                             }
561                             [% CASE 'phone' %]
562                             {
563                                 "data": "phone",
564                                 "searchable": true,
565                                 "orderable": true,
566                                 "render": function( data, type, row, meta ) {
567                                     return escape_str(data);
568                                 }
569                             }
570                             [% CASE 'checkouts' %][% embed.push('checkouts+count', 'overdues+count') %]
571                             {
572                                 "data": "",
573                                 "searchable": false,
574                                 "orderable": false,
575                                 "render": function( data, type, row, meta ) {
576                                     if ( row.overdues_count ) {
577                                         return "<span class='overdue'><strong>"+row.overdues_count + "</strong></span>";
578                                     } else {
579                                         return "0 / " + row.checkouts_count;
580                                     }
581                                 }
582                             }
583                             [% CASE 'account_balance' %][% embed.push('account_balance') %]
584                             {
585                                 "data": "",
586                                 "searchable": false,
587                                 "orderable": false,
588                                 "render": function( data, type, row, meta ) {
589                                     let r = "<span style='text-align: right; display: block;'><a href=\"/cgi-bin/koha/members/boraccount.pl?borrowernumber="+row.patron_id+"\">";
590                                     let balance_str = row.account_balance || 0;
591                                     balance_str = balance_str.escapeHtml().format_price();
592                                     if ( row.account_balance < 0 ) {
593                                         // FIXME Format price here
594                                         r += "<span class='credit'>" + balance_str + "</span>";
595                                     } else if ( row.account_balance > 0 ) {
596                                         r += "<span class='debit'><strong>" + balance_str  + "</strong></span>"
597                                     } else {
598                                         r += balance_str;
599                                     }
600                                     r += "</a></span>";
601                                     return r;
602                                 }
603                             }
604
605                             [% CASE 'action' %]
606                             {
607                                 "data": function( row, type, val, meta ) {
608
609                                     let patron_id = encodeURIComponent(row.patron_id);
610                                     let action_node = "";
611                                     [% FOR action IN actions %]
612                                     [% SWITCH action %]
613                                     [% CASE 'select' %]
614                                         action_node += '<a href="#" class="btn btn-default btn-xs select_user" data-borrowernumber="' + patron_id + '">Select</a><input type="hidden" id="borrower_data' + patron_id + '" name="borrower_data'+ patron_id + '" value=\''+JSON.stringify(row)+'\' />';
615                                     [% CASE 'add' %]
616                                         action_node += '<a href="#" class="btn btn-default btn-xs add_user" data-borrowernumber="' + patron_id + '" data-firstname="' + encodeURIComponent(row.firstname) + '" data-surname="' + encodeURIComponent(row.surname) + '">Add</a><input type="hidden" id="borrower_data' + patron_id + '" name="borrower_data'+ patron_id + '" />';
617                                     [% CASE 'edit' %]
618                                         action_node += '<a href="/cgi-bin/koha/members/memberentry.pl?op=modify&amp;destination=circ&amp;borrowernumber=' + patron_id + '" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>';
619                                     [% CASE 'checkout' %]
620                                         [% IF CAN_user_circulate_circulate_remaining_permissions %]
621                                             action_node += '<a class="btn btn-default btn-xs" href="/cgi-bin/koha/circ/circulation.pl?borrowernumber=' + patron_id + '"><i class="fa fa-barcode"></i> ' + _("Check out") + '</a>';
622                                         [% END %]
623                                     [% END %]
624                                     [% END %]
625                                     return action_node;
626                                 },
627                                 "searchable": false,
628                                 "orderable": false
629                             }
630                         [% END %]
631                         [% UNLESS loop.last %],[% END %]
632                     [% END %]
633                 ],
634                 'embed': [% To.json(embed) | $raw %],
635                 "order": [[ [% order_column_index | html %], "asc" ]],
636                 'bAutoWidth': false,
637                 'lengthMenu': [aLengthMenu, aLengthMenuLabel],
638                 'sPaginationType': 'full_numbers',
639                 "pageLength": [% Koha.Preference('PatronsPerPage') | html %],
640                 [% IF sticky_header %]
641                 "initComplete": function(settings, json) {
642                     $("#[% sticky_header | html %]").show();
643                     Sticky = $("#[% sticky_header | html %]");
644                     Sticky.hcSticky({
645                         stickTo: "#[% sticky_to | html %]",
646                         stickyClass: "floating"
647                     });
648                 },
649                 [% END %]
650             }, typeof table_settings !== 'undefined' ? table_settings : null, 1, additional_filters);
651
652             $("#patron_search_form").on('submit', filter);
653             $(".filterByLetter").on("click",function(e){
654                 e.preventDefault();
655                 filterByFirstLetterSurname($(this).text(), true);
656             });
657             $("body").on("click",".add_user",function(e){
658                 e.preventDefault();
659                 var borrowernumber = $(this).data("borrowernumber");
660                 var firstname = $(this).data("firstname");
661                 var surname = $(this).data("surname");
662                 add_user( borrowernumber, firstname + " " + surname );
663             });
664
665             $("body").on("click",".select_user",function(e){
666                 e.preventDefault();
667                 var borrowernumber = $(this).data("borrowernumber");
668                 var borrower_data = $("#borrower_data"+borrowernumber).val();
669                 select_user( borrowernumber, JSON.parse(borrower_data) );
670             });
671
672             $("body").on("click",".patron_preview", function( e ){
673                 e.preventDefault();
674                 var borrowernumber = $(this).data("borrowernumber");
675                 var page = "/cgi-bin/koha/members/moremember.pl?print=brief&borrowernumber=" + borrowernumber;
676                 $("#patronPreview .modal-body").load( page + " div.container-fluid" );
677                 $('#patronPreview').modal({show:true});
678             });
679
680             $("#patronPreview").on('hidden.bs.modal', function (e) {
681                 $("#patronPreview .modal-body").html("<img src=\"[% interface | html %]/[% theme | html %]/img/spinner-small.gif\" alt=\"\" /> Loading");
682             });
683
684             $("#clear_search").on("click",function(e){
685                 e.preventDefault();
686                 clearFilters();
687                 $("#searchpattern").parent().hide();
688             });
689
690             if ( !defer_loading ) {
691                 $("#patron_search_form").submit();
692             }
693
694             /* Initial page load does not trigger the popstate event, so we explicitly call this */
695             getSearchByLocation( false );
696
697         });
698
699         function getSearchByLocation( setstate ){
700             /* Check to see if the URL contains a search parameter */
701             if( location.search != ""){
702                 var params = new URLSearchParams( location.search );
703                 var firstletter = params.get("firstletter");
704                 /* Check to see if search is a first letter param */
705                 if( firstletter ){
706                     /* Trigger function to return search results by letter */
707                     filterByFirstLetterSurname( firstletter, setstate );
708                 }
709             }
710         }
711
712         function update_search_description(){
713             var searched = $("#searchfieldstype_filter").find("option:selected").text();
714             if ( $("#search_patron_filter").val() ) {
715                 if ( $("#searchtype_filter").val() == 'start_with' ) {
716                     searched += _(" starting with ");
717                 } else {
718                     searched += _(" containing ");
719                 }
720                 searched += "'" + $("#search_patron_filter").val() + "'";
721             }
722             if ( $("#firstletter_filter").val() ) {
723                 searched += _(" begins with ") + "'" + $("#firstletter_filter").val() +"'";
724             }
725             if ( $("#categorycode_filter").val() ) {
726                 searched += _(" with category ") + "'" + $("#categorycode_filter").find("option:selected").text() + "'";
727             }
728             if ( $("#branchcode_filter").val() ) {
729                 searched += _(" in library ") + $("#branchcode_filter").find("option:selected").text();
730             }
731             $("#searchpattern").text(searched);
732             $("#searchpattern").parent().show();
733         }
734
735         function filter() {
736             [% IF redirect_if_attribute_equal %]
737                 let filter = $("#search_patron_filter").val();
738                 if ( filter ) {
739                     $.ajax({
740                         data: { cardnumber: filter, _match: 'exact' },
741                         type: 'GET',
742                         url: patron_search_url,
743                         success: function(data) {
744                             if ( data.length == 1 ) {
745                                 let url = '[% redirect_url | url %]'.indexOf("?") != -1
746                                     ? '[% redirect_url | url %]&borrowernumber=' + data[0].patron_id
747                                     : '[% redirect_url | url %]?borrowernumber=' + data[0].patron_id;
748                                 document.location.href = url;
749                                 return false;
750                             }
751                         },
752                         error: function() {
753                             alert( _("An error occurred. Check the logs") );
754                         }
755                     });
756                 }
757             [% END %]
758             $("#firstletter_filter").val('');
759             $("#[% table_id | html %]_search_results").show();
760
761             let table_dt = patrons_table.DataTable();
762             [% FOR c IN columns %]
763                 [% SWITCH c %]
764                 [% CASE 'branch' %]
765                     library_id = $("#branchcode_filter").val() || "";
766                     patrons_table.find('thead tr:eq(1) th[data-filter="libraries"] select').val(library_id);
767                     table_dt.column([% loop.count - 1 %]).search(library_id ? '^'+library_id+'$' : '');
768                 [% CASE 'category' %]
769                     let category_id = $("#categorycode_filter").val() || "";
770                     patrons_table.find('thead tr:eq(1) th[data-filter="categories"] select').val(category_id);
771                     table_dt.column([% loop.count - 1 %]).search(category_id ? '^'+category_id+'$' : '');
772                 [% END %]
773             [% END %]
774             table_dt.search("");
775             first_draw = 1; // Only redirect if we are coming from here
776             table_dt.draw();
777             [% IF display_search_description %]
778                 update_search_description();
779             [% END %]
780             return false;
781         }
782
783         function clearFilters() {
784             $("#searchfieldstype_filter option:first").prop("selected", true);
785             $("#searchtype_filter option[value='contain']").prop("selected", true);
786             $("#categorycode_filter option:first").prop("selected", true);
787             $("#branchcode_filter option:first").prop("selected", true);
788             $("#firstletter_filter").val('');
789             $("#search_patron_filter").val('');
790             /* remove any search string added by firstletter search */
791             history.pushState( {}, null, window.location.href.split("?" )[0]);
792             $("#[% table_id | html %]_search_results").hide();
793             [% IF display_search_description %]
794                 update_search_description();
795             [% END %]
796         }
797
798         // User has clicked on a letter
799         function filterByFirstLetterSurname(letter, setstate ) {
800             $("#firstletter_filter").val(letter);
801
802             $("#[% table_id | html %]_search_results").show();
803
804             if ( setstate ) {
805                 history.pushState( null, null, "?firstletter=" + letter );
806             }
807
808             patrons_table.DataTable().draw();
809             [% IF display_search_description %]
810                 update_search_description();
811             [% END %]
812         }
813
814         // modify parent window owner element
815         function add_user(borrowernumber, borrowername) {
816             var p = window.opener;
817             // In one place (serials/routing.tt), the page is reload on every add
818             // We have to wait for the page to be there
819             function wait_for_opener () {
820                 if ( ! $(opener.document).find('body').size() ) {
821                     setTimeout(wait_for_opener, 500);
822                 } else {
823                     [%# Note that add_user could sent data instead of borrowername too %]
824                     $("#info").hide();
825                     $("#error").hide();
826                     if ( p.add_user(borrowernumber, borrowername) < 0 ) {
827                         $("#error").html(_("Patron '%s' is already in the list.").format(borrowername));
828                         $("#error").show();
829                     } else {
830                         $("#info").html(_("Patron '%s' added.").format(borrowername));
831                         $("#info").show();
832                     }
833                 }
834             }
835             wait_for_opener();
836         }
837         function select_user(borrowernumber, data) {
838             var p = window.opener;
839             [%  IF callback %]
840                 p.[% callback | html %](borrowernumber, data);
841             [%  ELSE %]
842                 p.select_user(borrowernumber, data);
843             [%  END %]
844             window.close();
845         }
846     </script>
847 [% END %]