Bug 22649: Add itemtype to item search results and CSV file
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / catalogue / itemsearch.tt
1 [% USE raw %]
2 [% USE To %]
3 [% USE Asset %]
4
5 [% BLOCK form_label %]
6   [% SWITCH label %]
7     [% CASE 'barcode' %]<span>Barcode</span>
8     [% CASE 'itemcallnumber' %]<span>Call number</span>
9     [% CASE 'stocknumber' %]<span>Inventory number</span>
10     [% CASE 'title' %]<span>Title</span>
11     [% CASE 'author' %]<span>Author</span>
12     [% CASE 'publishercode' %]<span>Publisher</span>
13     [% CASE 'publicationyear' %]<span>Publication date</span>
14     [% CASE 'collectiontitle' %]<span>Collection</span>
15     [% CASE 'isbn' %]<span>ISBN</span>
16     [% CASE 'issn' %]<span>ISSN</span>
17     [% CASE 'homebranch' %]<span>Home library</span>
18     [% CASE 'holdingbranch' %]<span>Current location</span>
19     [% CASE 'All libraries' %]<span>All libraries</span>
20     [% CASE 'location' %]<span>Shelving location</span>
21     [% CASE 'All locations' %]<span>All locations</span>
22     [% CASE 'itype' %]<span>Item type</span>
23     [% CASE 'All item types' %]<span>All item types</span>
24     [% CASE 'ccode' %]<span>Collection code</span>
25     [% CASE 'All collection codes' %]<span>All collection codes</span>
26     [% CASE 'notforloan' %]<span>Status</span>
27     [% CASE 'All statuses' %]<span>All statuses</span>
28     [% CASE 'damaged' %]<span>Damaged</span>
29     [% CASE 'itemlost' %]<span>Lost</span>
30   [% END %]
31 [% END %]
32
33 [% BLOCK form_field_select %]
34   <div class="form-field form-field-select">
35     <label class="form-field-label" for="[% name | html %]">[% INCLUDE form_label label=name %]</label>
36     <select id="[% name | html %]_op" name="[% name | html %]_op">
37       <option value="=">is</option>
38       <option value="!=" >is not</option>
39     </select>
40     <select id="[% name | html %]" name="[% name | html %]" multiple="multiple" size="[% options.size < 4 ? options.size + 1 : 4 | html %]">
41       <option value="" selected="selected">
42         [% IF (empty_option) %][% INCLUDE form_label label=empty_option %][% ELSE %]<span>All</span>[% END %]
43       </option>
44       [% FOREACH option IN options %]
45         <option value="[% option.value | html %]">[% option.label | html %]</option>
46       [% END %]
47     </select>
48   </div>
49 [% END %]
50
51 [% BLOCK form_field_select_option %]
52   <option value="[% value | html %]">[% INCLUDE form_label label=value %]</option>
53 [% END %]
54
55 [% BLOCK form_field_select_text %]
56   <div class="form-field form-field-select-text">
57     <select name="c" class="form-field-conjunction" disabled="disabled">
58       <option value="and">AND</option>
59       <option value="or">OR</option>
60     </select>
61     <select name="f" class="form-field-column">
62       [% INCLUDE form_field_select_option value='barcode' %]
63       [% INCLUDE form_field_select_option value='itemcallnumber' %]
64       [% INCLUDE form_field_select_option value='stocknumber' %]
65       [% INCLUDE form_field_select_option value='title' %]
66       [% INCLUDE form_field_select_option value='author' %]
67       [% INCLUDE form_field_select_option value='publishercode' %]
68       [% INCLUDE form_field_select_option value='publicationyear' %]
69       [% INCLUDE form_field_select_option value='collectiontitle' %]
70       [% INCLUDE form_field_select_option value='isbn' %]
71       [% INCLUDE form_field_select_option value='issn' %]
72       [% IF items_search_fields.size %]
73         <optgroup label="Custom search fields">
74           [% FOREACH field IN items_search_fields %]
75             [% marcfield = field.tagfield %]
76             [% IF field.tagsubfield %]
77               [% marcfield = marcfield _ '$' _ field.tagsubfield %]
78             [% END %]
79             <option value="marc:[% marcfield | html %]" data-authorised-values-category="[% field.authorised_values_category | html %]">[% field.label | html %] ([% marcfield | html %])</option>
80           [% END %]
81         </optgroup>
82       [% END %]
83     </select>
84     <input type="text" name="q" class="form-field-value" value="" />
85     <input type="hidden" name="op" value="like" />
86   </div>
87 [% END %]
88
89 [% BLOCK form_field_radio_yes_no %]
90   <div class="form-field">
91     <label class="form-field-label">[% INCLUDE form_label label=name %]:</label>
92     <input type="radio" name="[% name | html %]" id="[% name | html %]_indifferent" value="" checked="checked"/>
93     <label for="[% name | html %]_indifferent">Ignore</label>
94     <input type="radio" name="[% name | html %]" id="[% name | html %]_yes" value="yes" />
95     <label for="[% name | html %]_yes">Yes</label>
96     <input type="radio" name="[% name | html %]" id="[% name | html %]_no" value="no" />
97     <label for="[% name | html %]_no">No</label>
98   </div>
99 [% END %]
100
101 [%# We need to escape html characters for 'value' and 'label' %]
102 [%- BLOCK escape_html_value_label -%]
103     [%- SET escaped = [] -%]
104     [%- FOR e IN elts -%]
105         [%- value = BLOCK %][% e.value | html %][% END -%]
106         [%- label = BLOCK %][% e.label | html %][% END -%]
107         [%- escaped.push({ 'value' => value, 'label' => label }) -%]
108     [%- END -%]
109     [%- To.json(escaped) | $raw -%]
110 [%- END -%]
111
112 [%# Page starts here %]
113
114 [% SET footerjs = 1 %]
115 [% INCLUDE 'doc-head-open.inc' %]
116   <title>Koha &rsaquo; Catalog &rsaquo; Item search</title>
117   [% INCLUDE 'doc-head-close.inc' %]
118   [% Asset.css("css/itemsearchform.css") | $raw %]
119 </head>
120
121 <body id="catalog_itemsearch" class="catalog">
122   [% INCLUDE 'header.inc' %]
123   [% INCLUDE 'home-search.inc' %]
124   <div id="breadcrumbs">
125     <a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> &rsaquo; Item search
126   </div>
127
128 <div class="main container-fluid">
129     <div class="row">
130         <div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
131
132     <div id="item-search-block">
133       <h1>Item search</h1>
134       <p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p>
135       <form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform">
136           <div id="toolbar" class="btn-toolbar">
137               <fieldset class="action">
138                   <div class="btn-group">
139                       <button class="btn btn-default"><i class="fa fa-search"></i> Search</button>
140                   </div>
141               </fieldset>
142           </div>
143           <fieldset>
144             [% INCLUDE form_field_select name="homebranch" options = branches empty_option = "All libraries" %]
145             [% INCLUDE form_field_select name="holdingbranch" options = branches empty_option = "All libraries" %]
146             [% IF locations.size %]
147                 [% INCLUDE form_field_select name="location" options = locations empty_option = "All locations" %]
148             [% END %]
149           </fieldset>
150           <fieldset>
151             [% INCLUDE form_field_select name="itype" options = itemtypes empty_option = "All item types" %]
152             [% IF ccodes.size %]
153                 [% INCLUDE form_field_select name="ccode" options = ccodes empty_option = "All collection codes" %]
154             [% END %]
155             [% IF notforloans.size %]
156                 [% INCLUDE form_field_select name="notforloan" options = notforloans empty_option = "All statuses" %]
157             [% END %]
158           </fieldset>
159           <fieldset>
160             [% INCLUDE form_field_select_text %]
161             <p class="hint">You can use the following wildcard characters: % _</p>
162             <p class="hint">% matches any number of characters</p>
163             <p class="hint">_ matches only a single character</p>
164           </fieldset>
165           <fieldset>
166             <div class="form-field">
167               <label class="form-field-label" for="itemcallnumber_from">From call number:</label>
168               <input type="text" id="itemcallnumber_from" name="itemcallnumber_from" value="" />
169               <span class="hint">(inclusive)</span>
170             </div>
171             <div class="form-field">
172               <label class="form-field-label" for="itemcallnumber_to">To call number:</label>
173               <input type="text" id="itemcallnumber_to" name="itemcallnumber_to" value="" />
174               <span class="hint">(inclusive)</span>
175             </div>
176             [% INCLUDE form_field_radio_yes_no name="damaged" %]
177             [% INCLUDE form_field_radio_yes_no name="itemlost" %]
178             <div class="form-field">
179               <label class="form-field-label" for="issues_op">Checkout count:</label>
180               <select id="issues_op" name="issues_op">
181                 <option value=">">&gt;</option>
182                 <option value="<">&lt;</option>
183                 <option value="=">=</option>
184                 <option value="!=">!=</option>
185               </select>
186               <input type="text" name="issues" />
187             </div>
188             <div class="form-field">
189               <label class="form-field-label" for="datelastborrowed_op">Last checkout date:</label>
190               <select id="datelastborrowed_op" name="datelastborrowed_op">
191                 <option value=">">After</option>
192                 <option value="<">Before</option>
193                 <option value="=">On</option>
194               </select>
195               <input type="text" name="datelastborrowed" />
196               <span class="hint">ISO Format (YYYY-MM-DD)</span>
197             </div>
198           </fieldset>
199           <fieldset>
200             <div class="form-field-radio">
201               <label>Output:</label>
202               <input type="radio" id="format-html" name="format" value="html" checked="checked" /> <label for="format-html">Screen</label>
203               <input type="radio" id="format-csv" name="format" value="csv" /> <label for="format-csv">CSV</label>
204               <input type="radio" id="format-barcodes" name="format" value="barcodes"/> <label for="format-barcodes">Barcodes file</label>
205             </div>
206           </fieldset>
207       </form>
208     </div>
209     </div>
210   </div>
211     <div class="row">
212         <div class="col-md-12">
213       <div id="results-wrapper"></div>
214         </div>
215       </div>
216
217 [% MACRO jsinclude BLOCK %]
218     [% INCLUDE 'datatables.inc' %]
219     [% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
220     [% Asset.js("lib/hc-sticky.js") | $raw %]
221     <script type="text/javascript">
222         var authorised_values = [% authorised_values_json | $raw %];
223
224         function loadAuthorisedValuesSelect(select) {
225             var selected = select.find('option:selected');
226             var category = selected.data('authorised-values-category');
227             var form_field_value = select.siblings('.form-field-value');
228             if (category && category in authorised_values) {
229                 var values = authorised_values[category];
230                 var html = '<select name="q" class="form-field-value">\n';
231                 for (i in values) {
232                     var value = values[i];
233                     html += '<option value="' + value.authorised_value + '">' + value.lib + '</option>\n';
234                 }
235                 html += '</select>\n';
236                 var new_form_field_value = $(html);
237                 new_form_field_value.val(form_field_value.val());
238                 form_field_value.replaceWith(new_form_field_value);
239             } else {
240                 if (form_field_value.prop('tagName').toLowerCase() == 'select') {
241                     html = '<input name="q" type="text" class="form-field-value" />';
242                     var new_form_field_value = $(html);
243                     form_field_value.replaceWith(new_form_field_value);
244                 }
245             }
246         }
247
248     function addNewField( link ) {
249             var form_field = $('div.form-field-select-text').last();
250             var copy = form_field.clone(true);
251             copy.find('input,select').not('[type="hidden"]').each(function() {
252                 $(this).val('');
253             });
254             copy.find('.form-field-conjunction').prop('disabled', false);
255             form_field.after(copy);
256       link.remove();
257             copy.find('select.form-field-column').change();
258         }
259
260         function submitForm($form) {
261             var tr = ''
262                 + '    <tr>'
263                 + '      <th id="items_title">' + _("Title") + '</th>'
264                 + '      <th id="items_pubdate">' + _("Publication date") + '</th>'
265                 + '      <th id="items_publisher">' + _("Publisher") + '</th>'
266                 + '      <th id="items_collection">' + _("Collection") + '</th>'
267                 + '      <th id="items_barcode">' + _("Barcode") + '</th>'
268                 + '      <th id="items_callno">' + _("Call number") + '</th>'
269                 + '      <th id="items_homebranch">' + _("Home library") + '</th>'
270                 + '      <th id="items_holdingbranch">' + _("Current location") + '</th>'
271                 + '      <th id="items_location">' + _("Shelving location") + '</th>'
272                 + '      <th id="items_itype">' + _("Itemtype") + '</th>'
273                 + '      <th id="item_inventoryno">' + _("Inventory number") + '</th>'
274                 + '      <th id="items_status">' + _("Status") + '</th>'
275                 + '      <th id="items_checkouts">' + _("Checkouts") + '</th>'
276                 + '      <th id=""></th>'
277                 + '    </tr>'
278             var table = ''
279                 + '<table id="results">'
280                 + '  <thead>' + tr + tr + '</thead>'
281                 + '  <tbody></tbody>'
282                 + '</table>';
283
284             var advSearchLink = $('<a>')
285                 .attr('href', '/cgi-bin/koha/catalogue/search.pl')
286                 .html(_("Go to advanced search"));
287             var editSearchLink = $('<a>')
288                 .attr('href', '#')
289                 .html(_("Edit search"))
290                 .addClass('btn btn-default btn-xs')
291                 .on('click', function(e) {
292                     e.preventDefault();
293                     $('#item-search-block').show();
294                 });
295
296             var csvExportLink = $('<a>')
297                 .attr('href', '#')
298                 .html(_("Export results to CSV"))
299                 .addClass('btn btn-default btn-xs')
300                 .on('click', function(e) {
301                     e.preventDefault();
302                     $('#format-csv').prop('checked', true);
303                     $('#itemsearchform').submit();
304                     $('#format-html').prop('checked', true);
305                 });
306             var barcodesExportLink = $('<a>')
307                 .attr('href', '#')
308                 .html(_("Export results to barcodes file"))
309                 .addClass('btn btn-default btn-xs')
310                 .on('click', function(e) {
311                     e.preventDefault();
312                     $('#format-barcodes').prop('checked', true);
313                     $('#itemsearchform').submit();
314                     $('#format-html').prop('checked', true);
315               });
316
317             var editSearchAndExportLinks = $('<p>')
318                 .append(editSearchLink)
319                 .append(' | ')
320                 .append(csvExportLink)
321                 .append(' ')
322                 .append(barcodesExportLink);
323
324             var results_heading = $('<div>').addClass('results-heading')
325                 .append("<h1>" + _("Item search results") + "</h1>")
326                 .append($('<p>').append(advSearchLink))
327                 .append(editSearchAndExportLinks);
328             $('#results-wrapper').empty()
329                 .append(results_heading)
330                 .append(table);
331
332             var params = [];
333             $form.find('select:not(:disabled) option:selected,input[type="text"]:not(:disabled),input[type="hidden"]:not(:disabled),input[type="radio"]:checked').each(function() {
334                 if ( $(this).prop('tagName').toLowerCase() == 'option' ) {
335                     var name = $(this).parents('select').first().attr('name');
336                     var value = $(this).val();
337                     params.push({ 'name': name, 'value': value });
338                 } else {
339                     params.push({ 'name': $(this).attr('name'), 'value': $(this).val() });
340                 }
341             });
342
343             $('#results').dataTable($.extend(true, {}, dataTablesDefaults, {
344                 'bDestroy': true,
345                 'bServerSide': true,
346                 'bProcessing': true,
347                 'sAjaxSource': '/cgi-bin/koha/catalogue/itemsearch.pl',
348                 'fnServerData': function(sSource, aoData, fnCallback) {
349                     aoData.push( { 'name': 'format', 'value': 'json' } );
350                     for (i in params) {
351                         aoData.push(params[i]);
352                     }
353                     $.ajax({
354                         'dataType': 'json',
355                         'type': 'POST',
356                         'url': sSource,
357                         'data': aoData,
358                         'success': function(json){
359                             fnCallback(json);
360                         }
361                     });
362                 },
363                 'sDom': '<"top pager"ilp>t<"bottom pager"ip>r',
364                 'aoColumns': [
365                     { 'sName': 'title' },
366                     { 'sName': 'publicationyear' },
367                     { 'sName': 'publishercode' },
368           { 'sName': 'ccode' },
369                     { 'sName': 'barcode' },
370                     { 'sName': 'itemcallnumber' },
371                     { 'sName': 'homebranch' },
372                     { 'sName': 'holdingbranch' },
373                     { 'sName': 'location' },
374                     { 'sName': 'itype'},
375                     { 'sName': 'stocknumber' },
376                     { 'sName': 'notforloan' },
377                     { 'sName': 'issues' },
378                     { 'sName': 'checkbox', 'bSortable': false }
379                 ],
380                 "sPaginationType": "full_numbers"
381             })).columnFilter({
382                 'sPlaceHolder': 'head:after',
383                 'aoColumns': [
384                     { 'type': 'text' },
385                     { 'type': 'text' },
386                     { 'type': 'text' },
387                     [% IF ccodes.size %]
388                         { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => ccodes %] },
389                     [% ELSE %]
390                         null,
391                     [% END %]
392                     { 'type': 'text' },
393                     { 'type': 'text' },
394                     { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
395                     { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
396                     [% IF locations.size %]
397                         { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => locations %] },
398                     [% ELSE %]
399                         null,
400                     [% END %]
401                     [% IF itemtypes.size %]
402                         { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => itemtypes %] },
403                     [% ELSE %]
404                         null,
405                     [% END %]
406                     { 'type': 'text' },
407                     [% IF notforloans.size %]
408                         { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => notforloans %] },
409                     [% ELSE %]
410                         null,
411                     [% END %]
412                     { 'type': 'text' },
413                     null
414                 ]
415             });
416         }
417         var Sticky;
418         $(document).ready(function () {
419             Sticky = $("#toolbar");
420             Sticky.hcSticky({
421                 stickTo: "#item-search-block",
422                 stickyClass: "floating"
423             });
424             // Add the "New field" link.
425             var form_field = $('div.form-field-select-text').last()
426             var NEW_FIELD = _("New field");
427       var button_field_new = $('<a href="#" class="button-field-new" title="Add a new field"><i class="fa fa-plus"></i> ' + NEW_FIELD + '</a>');
428       button_field_new.click(function(e) {
429           e.preventDefault();
430           addNewField( $(this) );
431             });
432       form_field.append(button_field_new);
433
434             // If a field is linked to an authorised values list, display the list.
435             $('div.form-field-select-text select').change(function() {
436                 loadAuthorisedValuesSelect($(this));
437             }).change();
438
439             // Prevent user to select the 'All ...' option with other options.
440             $('div.form-field-select').each(function() {
441                 $(this).find('select').filter(':last').change(function() {
442                     values = $(this).val();
443                     if (values.length > 1) {
444                         var idx = $.inArray('', values);
445                         if (idx != -1) {
446                             values.splice(idx, 1);
447                             $(this).val(values);
448                         }
449                     }
450                 });
451                 $('#itemsearchform').submit(function() {
452                   var searchform = $(this);
453                   var format = searchform.find('input[name="format"]:checked').val();
454                   if (format == 'html') {
455                     submitForm(searchform);
456                     $("#item-search-block").hide();
457                     return false;
458                   }
459                 });
460             });
461         });
462     </script>
463 [% END %]
464
465 [% INCLUDE 'intranet-bottom.inc' %]