Koha/koha-tmpl/intranet-tmpl/prog/js/categories.js
Jonathan Druart 84a923db18
Bug 38472: Remove kohaTable's exportColumns option
We hardcode the id of the columns to export, we should use .noExport
instead on the columns we do not want to export.

Test plan:
Confirm that the columns exported on the acqui/basket, admin/categories
and admin/restrictions pages are the same with and without this patch.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2025-03-13 10:29:22 +01:00

147 lines
4.2 KiB
JavaScript

/* global __ */
jQuery.validator.addMethod(
"letters_numbers",
function (value, element) {
var patt = /^[a-zA-Z0-9\-_]+$/g;
if (patt.test(element.value)) {
return true;
} else {
return false;
}
},
__(
"Category code can only contain the following characters: letters, numbers, - and _."
)
);
jQuery.validator.addMethod(
"enrollment_period",
function () {
enrolmentperiod = $("#enrolmentperiod").val();
enrolmentperioddate = $("#enrolmentperioddate").val();
if (
$("#enrolmentperiod").val() !== "" &&
$("#enrolmentperioddate").val() !== ""
) {
return false;
} else {
return true;
}
},
__("Please choose an enrollment period in months OR by date.")
);
$(document).ready(function () {
$("#patron_categories").kohaTable(
{
columnDefs: [
{
targets: [-1],
orderable: false,
searchable: false,
},
{
targets: [3, 4, 5],
type: "natural",
},
],
pagingType: "full",
bKohaColumnsUseNames: true,
},
table_settings
);
if ($("#branches option:selected").length < 1) {
$("#branches option:first").attr("selected", "selected");
}
$("#categorycode").on("blur", function () {
toUC(this);
});
$("#category_form").validate({
rules: {
categorycode: {
required: true,
letters_numbers: true,
},
description: "required",
enrolmentperiod: {
required: function (element) {
return $("#enrolmentperioddate").val() === "";
},
digits: true,
enrollment_period: true,
min: 1,
},
enrolmentperioddate: {
required: function (element) {
return $("#enrolmentperiod").val() === "";
},
enrollment_period: true,
},
password_expiry_days: {
digits: true,
},
dateofbirthrequired: {
digits: true,
},
upperagelimit: {
digits: true,
},
enrolmentfee: {
number: true,
},
reservefee: {
number: true,
},
category_type: {
required: true,
},
min_password_length: {
digits: true,
},
},
messages: {
enrolmentperiod: {
required: __(
"Please choose an enrollment period in months OR by date."
),
},
enrolmentperioddate: {
required: __(
"Please choose an enrollment period in months OR by date."
),
},
},
});
let blocked_actions_select = $("select#block_expired[multiple='multiple']");
blocked_actions_select.multipleSelect({
placeholder: __("Please select ..."),
selectAll: false,
hideOptgroupCheckboxes: true,
allSelected: __("All selected"),
countSelected: __("# of % selected"),
noMatchesFound: __("No matches found"),
onClick: function (view) {
if (
view.value == "follow_syspref_BlockExpiredPatronOpacActions" &&
view.selected
) {
blocked_actions_select.multipleSelect("uncheck", "hold");
blocked_actions_select.multipleSelect("uncheck", "renew");
blocked_actions_select.multipleSelect("uncheck", "ill_request");
} else if (
view.value != "follow_syspref_BlockExpiredPatronOpacActions" &&
view.selected
) {
blocked_actions_select.multipleSelect(
"uncheck",
"follow_syspref_BlockExpiredPatronOpacActions"
);
}
},
});
});