0f122a9400
Test Plan: 1. Apply patch 2. create a patron list if there aren't any 3. search for a patron 4. observe the "Patron lists" tab showing the list that the patron is not in 5. try adding the patron to the list and removing them from the list to be sure the feature has full operation 6. click "Check Out" on the side bar menu to navigate to the circulation page for this patron 7. observe the "Patron lists" tab, and verify it operates as it did on the patron details page Bug 32730: (follow-up) Minor corrections by Owen Leonard This patch corrects an instance of an incorrect capital letter ("Patron Lists" -> "Patron lists") and makes minor tweaks to indentation. Signed-off-by: Stina Hallin <stina.hallin@ub.lu.se> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Edit: (tcohen) new files should be run through perltidy ALWAYS. Did it and squashed it here. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
135 lines
4.2 KiB
JavaScript
135 lines
4.2 KiB
JavaScript
/* global borrowernumber selectBsTabByHash */
|
|
$(document).ready(function() {
|
|
$("#CheckAllExports").on("click",function(){
|
|
$(".export:visible").prop("checked", true);
|
|
return false;
|
|
});
|
|
$("#UncheckAllExports").on("click",function(){
|
|
$(".export:visible").prop("checked", false);
|
|
return false;
|
|
});
|
|
|
|
$("#finesholdsissues a[data-toggle='tab']").on("shown.bs.tab", function(e){
|
|
$(this).click();
|
|
});
|
|
|
|
$("#borrower_messages .cancel").on("click",function(){
|
|
$("#add_message_form").hide();
|
|
$("#addmessage").show();
|
|
});
|
|
|
|
$("#addmessage").on("click",function(){
|
|
$(this).hide();
|
|
$("#add_message_form").show();
|
|
});
|
|
|
|
$("input.radio").on("click",function(){
|
|
radioCheckBox($(this));
|
|
});
|
|
|
|
$(".clear_date").on("click", function(){
|
|
$("#stickyduedate").prop( "checked", false );
|
|
});
|
|
|
|
$("#export_submit").on("click",function(){
|
|
export_checkouts($("#issues-table-output-format").val());
|
|
return false;
|
|
});
|
|
|
|
var circ_settings = $(".circ-settings");
|
|
var circ_settings_icon = $(".circ-settings-icon");
|
|
|
|
// If any checkboxes in the circ settings are selected, show the settings by default
|
|
if ( $(".circ-settings input:checked,#duedatespec[value!='']").length ) {
|
|
circ_settings.show();
|
|
circ_settings_icon.removeClass("fa-caret-right").addClass("fa-caret-down");
|
|
} else {
|
|
circ_settings.hide();
|
|
circ_settings_icon.removeClass("fa-caret-down").addClass("fa-caret-right");
|
|
}
|
|
|
|
$("#show-circ-settings a").on("click",function(){
|
|
if( circ_settings.is(":hidden")){
|
|
circ_settings.show();
|
|
circ_settings_icon.removeClass("fa-caret-right").addClass("fa-caret-down");
|
|
} else {
|
|
$("#barcode").focus();
|
|
circ_settings.hide();
|
|
circ_settings_icon.removeClass("fa-caret-down").addClass("fa-caret-right");
|
|
}
|
|
});
|
|
|
|
$(".circ_setting").on("click",function(){
|
|
$("#barcode").focus();
|
|
});
|
|
|
|
$("#itemSearchFallback").ready(function(){
|
|
$("#itemSearchFallback").modal("show");
|
|
});
|
|
|
|
// Debarments
|
|
$("#reldebarments_panel .remove_restriction").on("click",function(){
|
|
return confirm( __("Remove restriction?") );
|
|
});
|
|
var mrform = $("#manual_restriction_form");
|
|
var mrlink = $("#add_manual_restriction");
|
|
mrform.hide();
|
|
mrlink.on("click",function(e){
|
|
$(this).hide();
|
|
mrform.show();
|
|
e.preventDefault();
|
|
});
|
|
$("#cancel_manual_restriction").on("click",function(e){
|
|
mrlink.show();
|
|
mrform.hide();
|
|
e.preventDefault();
|
|
});
|
|
$(".clear-date").on("click",function(e){
|
|
e.preventDefault();
|
|
var fieldID = this.id.replace("clear-date-","");
|
|
$("#" + fieldID).val("");
|
|
});
|
|
|
|
/* Preselect Bootstrap tab based on location hash */
|
|
selectBsTabByHash("finesholdsissues");
|
|
|
|
if ( $('#clubs_panel').length ) {
|
|
$('#clubs-tab').on('click', function() {
|
|
$('#clubs_panel').text(_("Loading..."));
|
|
$('#clubs_panel').load('/cgi-bin/koha/clubs/patron-clubs-tab.pl?borrowernumber=' + borrowernumber );
|
|
});
|
|
}
|
|
|
|
if ( $('#pat_lists_panel').length ) {
|
|
$('#pat_lists-tab').on('click', function() {
|
|
$('#pat_lists_panel').text(_("Loading..."));
|
|
$('#pat_lists_panel').load('/cgi-bin/koha/patron_lists/patron-lists-tab.pl?borrowernumber=' + borrowernumber );
|
|
});
|
|
}
|
|
});
|
|
|
|
function export_checkouts(format) {
|
|
if ($("input:checkbox[name='biblionumbers']:checked").length < 1){
|
|
alert( __("You must select checkout(s) to export") );
|
|
return;
|
|
}
|
|
|
|
$("input:checkbox[name='biblionumbers']").each( function(){
|
|
var input_item = $(this).siblings("input:checkbox");
|
|
if ( $(this).is(":checked") ) {
|
|
$(input_item).prop("checked", true);
|
|
} else {
|
|
$(input_item).prop("checked", false);
|
|
}
|
|
} );
|
|
|
|
if (format == 'iso2709_995') {
|
|
format = 'iso2709';
|
|
$("#dont_export_item").val(0);
|
|
} else if (format == 'iso2709') {
|
|
$("#dont_export_item").val(1);
|
|
}
|
|
|
|
document.getElementById("output_format").value = format;
|
|
document.issues.submit();
|
|
}
|