Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

460 lines
20 KiB

[% USE raw %]
[% USE To %]
[% USE Asset %]
[% BLOCK form_label %]
[% SWITCH label %]
[% CASE 'barcode' %]<span>Barcode</span>
[% CASE 'itemcallnumber' %]<span>Call number</span>
[% CASE 'stocknumber' %]<span>Inventory number</span>
[% CASE 'title' %]<span>Title</span>
[% CASE 'author' %]<span>Author</span>
[% CASE 'publishercode' %]<span>Publisher</span>
[% CASE 'publicationyear' %]<span>Publication date</span>
[% CASE 'collectiontitle' %]<span>Collection</span>
[% CASE 'isbn' %]<span>ISBN</span>
[% CASE 'issn' %]<span>ISSN</span>
[% CASE 'homebranch' %]<span>Home library</span>
[% CASE 'holdingbranch' %]<span>Current location</span>
[% CASE 'All libraries' %]<span>All libraries</span>
[% CASE 'location' %]<span>Shelving location</span>
[% CASE 'All locations' %]<span>All locations</span>
[% CASE 'itype' %]<span>Item type</span>
[% CASE 'All item types' %]<span>All item types</span>
[% CASE 'ccode' %]<span>Collection code</span>
[% CASE 'All collection codes' %]<span>All collection codes</span>
[% CASE 'notforloan' %]<span>Status</span>
[% CASE 'All statuses' %]<span>All statuses</span>
[% CASE 'damaged' %]<span>Damaged</span>
[% CASE 'itemlost' %]<span>Lost</span>
[% END %]
[% END %]
[% BLOCK form_field_select %]
<div class="form-field form-field-select">
<label class="form-field-label" for="[% name | html %]">[% INCLUDE form_label label=name %]</label>
<select id="[% name | html %]_op" name="[% name | html %]_op">
<option value="=">is</option>
<option value="!=" >is not</option>
</select>
<select id="[% name | html %]" name="[% name | html %]" multiple="multiple" size="[% options.size < 4 ? options.size + 1 : 4 | html %]">
<option value="" selected="selected">
[% IF (empty_option) %][% INCLUDE form_label label=empty_option %][% ELSE %]<span>All</span>[% END %]
</option>
[% FOREACH option IN options %]
<option value="[% option.value | html %]">[% option.label | html %]</option>
[% END %]
</select>
</div>
[% END %]
[% BLOCK form_field_select_option %]
<option value="[% value | html %]">[% INCLUDE form_label label=value %]</option>
[% END %]
[% BLOCK form_field_select_text %]
<div class="form-field form-field-select-text">
<select name="c" class="form-field-conjunction" disabled="disabled">
<option value="and">AND</option>
<option value="or">OR</option>
</select>
<select name="f" class="form-field-column">
[% INCLUDE form_field_select_option value='barcode' %]
[% INCLUDE form_field_select_option value='itemcallnumber' %]
[% INCLUDE form_field_select_option value='stocknumber' %]
[% INCLUDE form_field_select_option value='title' %]
[% INCLUDE form_field_select_option value='author' %]
[% INCLUDE form_field_select_option value='publishercode' %]
[% INCLUDE form_field_select_option value='publicationyear' %]
[% INCLUDE form_field_select_option value='collectiontitle' %]
[% INCLUDE form_field_select_option value='isbn' %]
[% INCLUDE form_field_select_option value='issn' %]
[% IF items_search_fields.size %]
<optgroup label="Custom search fields">
[% FOREACH field IN items_search_fields %]
[% marcfield = field.tagfield %]
[% IF field.tagsubfield %]
[% marcfield = marcfield _ '$' _ field.tagsubfield %]
[% END %]
<option value="marc:[% marcfield | html %]" data-authorised-values-category="[% field.authorised_values_category | html %]">[% field.label | html %] ([% marcfield | html %])</option>
[% END %]
</optgroup>
[% END %]
</select>
<input type="text" name="q" class="form-field-value" value="" />
<input type="hidden" name="op" value="like" />
</div>
[% END %]
[% BLOCK form_field_radio_yes_no %]
<div class="form-field">
<label class="form-field-label">[% INCLUDE form_label label=name %]:</label>
<input type="radio" name="[% name | html %]" id="[% name | html %]_indifferent" value="" checked="checked"/>
<label for="[% name | html %]_indifferent">Ignore</label>
<input type="radio" name="[% name | html %]" id="[% name | html %]_yes" value="yes" />
<label for="[% name | html %]_yes">Yes</label>
<input type="radio" name="[% name | html %]" id="[% name | html %]_no" value="no" />
<label for="[% name | html %]_no">No</label>
</div>
[% END %]
[%# We need to escape html characters for 'value' and 'label' %]
[%- BLOCK escape_html_value_label -%]
[%- SET escaped = [] -%]
[%- FOR e IN elts -%]
[%- value = BLOCK %][% e.value | html %][% END -%]
[%- label = BLOCK %][% e.label | html %][% END -%]
[%- escaped.push({ 'value' => value, 'label' => label }) -%]
[%- END -%]
[%- To.json(escaped) | $raw -%]
[%- END -%]
[%# Page starts here %]
[% SET footerjs = 1 %]
[% INCLUDE 'doc-head-open.inc' %]
<title>Koha &rsaquo; Catalog &rsaquo; Item search</title>
[% INCLUDE 'doc-head-close.inc' %]
[% Asset.css("css/itemsearchform.css") | $raw %]
</head>
<body id="catalog_itemsearch" class="catalog">
[% INCLUDE 'header.inc' %]
[% INCLUDE 'home-search.inc' %]
<div id="breadcrumbs">
<a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/catalogue/search.pl">Catalog</a> &rsaquo; Item search
</div>
<div class="main container-fluid">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-lg-8 col-lg-offset-2">
<div id="item-search-block">
<h1>Item search</h1>
<p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p>
<form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform">
<div id="toolbar" class="btn-toolbar">
<fieldset class="action">
<div class="btn-group">
<button class="btn btn-default btn-sm"><i class="fa fa-search"></i> Search</button>
</div>
</fieldset>
</div>
<fieldset>
[% INCLUDE form_field_select name="homebranch" options = branches empty_option = "All libraries" %]
[% INCLUDE form_field_select name="holdingbranch" options = branches empty_option = "All libraries" %]
[% IF locations.size %]
[% INCLUDE form_field_select name="location" options = locations empty_option = "All locations" %]
[% END %]
</fieldset>
<fieldset>
[% INCLUDE form_field_select name="itype" options = itemtypes empty_option = "All item types" %]
[% IF ccodes.size %]
[% INCLUDE form_field_select name="ccode" options = ccodes empty_option = "All collection codes" %]
[% END %]
[% IF notforloans.size %]
[% INCLUDE form_field_select name="notforloan" options = notforloans empty_option = "All statuses" %]
[% END %]
</fieldset>
<fieldset>
[% INCLUDE form_field_select_text %]
<p class="hint">You can use the following wildcard characters: % _</p>
<p class="hint">% matches any number of characters</p>
<p class="hint">_ matches only a single character</p>
</fieldset>
<fieldset>
<div class="form-field">
<label class="form-field-label" for="itemcallnumber_from">From call number:</label>
<input type="text" id="itemcallnumber_from" name="itemcallnumber_from" value="" />
<span class="hint">(inclusive)</span>
</div>
<div class="form-field">
<label class="form-field-label" for="itemcallnumber_to">To call number:</label>
<input type="text" id="itemcallnumber_to" name="itemcallnumber_to" value="" />
<span class="hint">(inclusive)</span>
</div>
[% INCLUDE form_field_radio_yes_no name="damaged" %]
[% INCLUDE form_field_radio_yes_no name="itemlost" %]
<div class="form-field">
<label class="form-field-label" for="issues_op">Checkout count:</label>
<select id="issues_op" name="issues_op">
<option value=">">&gt;</option>
<option value="<">&lt;</option>
<option value="=">=</option>
<option value="!=">!=</option>
</select>
<input type="text" name="issues" />
</div>
<div class="form-field">
<label class="form-field-label" for="datelastborrowed_op">Last checkout date:</label>
<select id="datelastborrowed_op" name="datelastborrowed_op">
<option value=">">After</option>
<option value="<">Before</option>
<option value="=">On</option>
</select>
<input type="text" name="datelastborrowed" />
<span class="hint">ISO Format (YYYY-MM-DD)</span>
</div>
</fieldset>
<fieldset>
<div class="form-field-radio">
<label>Output:</label>
<input type="radio" id="format-html" name="format" value="html" checked="checked" /> <label for="format-html">Screen</label>
<input type="radio" id="format-csv" name="format" value="csv" /> <label for="format-csv">CSV</label>
<input type="radio" id="format-barcodes" name="format" value="barcodes"/> <label for="format-barcodes">Barcodes file</label>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="results-wrapper"></div>
</div>
</div>
[% MACRO jsinclude BLOCK %]
[% INCLUDE 'datatables.inc' %]
[% Asset.js("lib/jquery/plugins/jquery.dataTables.columnFilter.js") | $raw %]
[% Asset.js("lib/hc-sticky.js") | $raw %]
<script type="text/javascript">
var authorised_values = [% authorised_values_json | html %];
function loadAuthorisedValuesSelect(select) {
var selected = select.find('option:selected');
var category = selected.data('authorised-values-category');
var form_field_value = select.siblings('.form-field-value');
if (category && category in authorised_values) {
var values = authorised_values[category];
var html = '<select name="q" class="form-field-value">\n';
for (i in values) {
var value = values[i];
html += '<option value="' + value.authorised_value + '">' + value.lib + '</option>\n';
}
html += '</select>\n';
var new_form_field_value = $(html);
new_form_field_value.val(form_field_value.val());
form_field_value.replaceWith(new_form_field_value);
} else {
if (form_field_value.prop('tagName').toLowerCase() == 'select') {
html = '<input name="q" type="text" class="form-field-value" />';
var new_form_field_value = $(html);
form_field_value.replaceWith(new_form_field_value);
}
}
}
function addNewField( link ) {
var form_field = $('div.form-field-select-text').last();
var copy = form_field.clone(true);
copy.find('input,select').not('[type="hidden"]').each(function() {
$(this).val('');
});
copy.find('.form-field-conjunction').prop('disabled', false);
form_field.after(copy);
link.remove();
copy.find('select.form-field-column').change();
}
function submitForm($form) {
var tr = ''
+ ' <tr>'
+ ' <th id="items_title">' + _("Title") + '</th>'
+ ' <th id="items_pubdate">' + _("Publication date") + '</th>'
+ ' <th id="items_publisher">' + _("Publisher") + '</th>'
+ ' <th id="items_collection">' + _("Collection") + '</th>'
+ ' <th id="items_barcode">' + _("Barcode") + '</th>'
+ ' <th id="items_callno">' + _("Call number") + '</th>'
+ ' <th id="items_homebranch">' + _("Home library") + '</th>'
+ ' <th id="items_holdingbranch">' + _("Current location") + '</th>'
+ ' <th id="items_location">' + _("Shelving location") + '</th>'
+ ' <th id="item_inventoryno">' + _("Inventory number") + '</th>'
+ ' <th id="items_status">' + _("Status") + '</th>'
+ ' <th id="items_checkouts">' + _("Checkouts") + '</th>'
+ ' <th id=""></th>'
+ ' </tr>'
var table = ''
+ '<table id="results">'
+ ' <thead>' + tr + tr + '</thead>'
+ ' <tbody></tbody>'
+ '</table>';
var advSearchLink = $('<a>')
.attr('href', '/cgi-bin/koha/catalogue/search.pl')
.html(_("Go to advanced search"));
var editSearchLink = $('<a>')
.attr('href', '#')
.html(_("Edit search"))
.addClass('btn btn-default btn-xs')
.on('click', function(e) {
e.preventDefault();
$('#item-search-block').show();
});
var csvExportLink = $('<a>')
.attr('href', '#')
.html(_("Export results to CSV"))
.addClass('btn btn-default btn-xs')
.on('click', function(e) {
e.preventDefault();
$('#format-csv').prop('checked', true);
$('#itemsearchform').submit();
$('#format-html').prop('checked', true);
});
var barcodesExportLink = $('<a>')
.attr('href', '#')
.html(_("Export results to barcodes file"))
.addClass('btn btn-default btn-xs')
.on('click', function(e) {
e.preventDefault();
$('#format-barcodes').prop('checked', true);
$('#itemsearchform').submit();
$('#format-html').prop('checked', true);
});
var editSearchAndExportLinks = $('<p>')
.append(editSearchLink)
.append(' | ')
.append(csvExportLink)
.append(' ')
.append(barcodesExportLink);
var results_heading = $('<div>').addClass('results-heading')
.append("<h1>" + _("Item search results") + "</h1>")
.append($('<p>').append(advSearchLink))
.append(editSearchAndExportLinks);
$('#results-wrapper').empty()
.append(results_heading)
.append(table);
var params = [];
$form.find('select').not(':disabled').find('option:selected').each(function () {
var name = $(this).parents('select').first().attr('name');
var value = $(this).val();
params.push({ 'name': name, 'value': value });
});
$form.find('input[type="text"],input[type="hidden"]').not(':disabled').each(function () {
params.push({ 'name': $(this).attr('name'), 'value': $(this).val() });
});
$form.find('input[type="radio"]:checked').each(function() {
params.push({ 'name': $(this).attr('name'), 'value': $(this).val() });
});
$('#results').dataTable($.extend(true, {}, dataTablesDefaults, {
'bDestroy': true,
'bServerSide': true,
'bProcessing': true,
'sAjaxSource': '/cgi-bin/koha/catalogue/itemsearch.pl',
'fnServerData': function(sSource, aoData, fnCallback) {
aoData.push( { 'name': 'format', 'value': 'json' } );
for (i in params) {
aoData.push(params[i]);
}
$.ajax({
'dataType': 'json',
'type': 'POST',
'url': sSource,
'data': aoData,
'success': function(json){
fnCallback(json);
}
});
},
'sDom': '<"top pager"ilp>t<"bottom pager"ip>r',
'aoColumns': [
{ 'sName': 'title' },
{ 'sName': 'publicationyear' },
{ 'sName': 'publishercode' },
{ 'sName': 'ccode' },
{ 'sName': 'barcode' },
{ 'sName': 'itemcallnumber' },
{ 'sName': 'homebranch' },
{ 'sName': 'holdingbranch' },
{ 'sName': 'location' },
{ 'sName': 'stocknumber' },
{ 'sName': 'notforloan' },
{ 'sName': 'issues' },
{ 'sName': 'checkbox', 'bSortable': false }
],
"sPaginationType": "full_numbers"
})).columnFilter({
'sPlaceHolder': 'head:after',
'aoColumns': [
{ 'type': 'text' },
{ 'type': 'text' },
{ 'type': 'text' },
[% IF ccodes.size %]
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => ccodes %] },
[% ELSE %]
null,
[% END %]
{ 'type': 'text' },
{ 'type': 'text' },
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
[% IF locations.size %]
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => locations %] },
[% ELSE %]
null,
[% END %]
{ 'type': 'text' },
[% IF notforloans.size %]
{ 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => notforloans %] },
[% ELSE %]
null,
[% END %]
{ 'type': 'text' },
null
]
});
}
var Sticky;
$(document).ready(function () {
Sticky = $("#toolbar");
Sticky.hcSticky({
stickTo: "#item-search-block",
stickyClass: "floating"
});
// Add the "New field" link.
var form_field = $('div.form-field-select-text').last()
var NEW_FIELD = _("New field");
var button_field_new = $('<a href="#" class="button-field-new" title="Add a new field"><i class="fa fa-plus"></i> ' + NEW_FIELD + '</a>');
button_field_new.click(function(e) {
e.preventDefault();
addNewField( $(this) );
});
form_field.append(button_field_new);
// If a field is linked to an authorised values list, display the list.
$('div.form-field-select-text select').change(function() {
loadAuthorisedValuesSelect($(this));
}).change();
// Prevent user to select the 'All ...' option with other options.
$('div.form-field-select').each(function() {
$(this).find('select').filter(':last').change(function() {
values = $(this).val();
if (values.length > 1) {
var idx = $.inArray('', values);
if (idx != -1) {
values.splice(idx, 1);
$(this).val(values);
}
}
});
$('#itemsearchform').submit(function() {
var searchform = $(this);
var format = searchform.find('input[name="format"]:checked').val();
if (format == 'html') {
submitForm(searchform);
$("#item-search-block").hide();
return false;
}
});
});
});
</script>
[% END %]
[% INCLUDE 'intranet-bottom.inc' %]