From 6ec36ff8db7e27c68a02c3fa035b316109a27320 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 28 Jan 2025 16:17:20 +0000 Subject: [PATCH] Bug 38924: Add patron quota management page Add a new patron quota management tab under the members area for patrons of the organization category type. FIXME: Tie into permissions for 'add', 'edit' Depending on permissions, we will need display only options including guarantor and guarantee usage against quotas and also the options to add and edit quota. --- .../prog/en/includes/circ-menu.inc | 5 + .../prog/en/includes/modals/quota.inc | 75 ++++++++ .../en/modules/members/circulation_quota.tt | 145 +++++++++++++++ .../intranet-tmpl/prog/js/modals/quota.js | 168 ++++++++++++++++++ members/circulation_quota.pl | 62 +++++++ 5 files changed, 455 insertions(+) create mode 100644 koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc create mode 100644 koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt create mode 100644 koha-tmpl/intranet-tmpl/prog/js/modals/quota.js create mode 100755 members/circulation_quota.pl diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc index f913c07c36c..b4eefa133aa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc @@ -195,6 +195,11 @@ [% END %] [% END %] + [% IF patron.category.category_type == 'I' %] +
  • [% END %]> + Circulation quota +
  • + [% END %] [% IF CAN_user_borrowers_edit_borrowers %] [% IF ( IntranetReadingHistoryHolds ) %]
  • diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc new file mode 100644 index 00000000000..c7fe8d8f1a8 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc @@ -0,0 +1,75 @@ + + + + + diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt new file mode 100644 index 00000000000..6119d21a515 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt @@ -0,0 +1,145 @@ +[% USE raw %] +[% USE Asset %] +[% USE KohaDates %] +[% USE Koha %] +[% USE AuthorisedValues %] +[% USE Branches %] +[% USE TablesSettings %] +[% PROCESS 'i18n.inc' %] +[% SET footerjs = 1 %] +[% INCLUDE 'doc-head-open.inc' %] +[% FILTER collapse %] + [% t("Circulation quota for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] + [% t("Patrons") | html %] › + [% t("Koha") | html %] +[% END %] +[% INCLUDE 'doc-head-close.inc' %] + + + +[% WRAPPER 'header.inc' %] + [% INCLUDE 'patron-search-header.inc' %] +[% END %] + +[% WRAPPER 'sub-header.inc' %] + [% WRAPPER breadcrumbs %] + [% WRAPPER breadcrumb_item %] + Patrons + [% END %] + [% WRAPPER breadcrumb_item %] + [% INCLUDE 'patron-title.inc' %] + [% END %] + [% WRAPPER breadcrumb_item bc_active= 1 %] + Circulation quotas + [% END %] + [% END #/ WRAPPER breadcrumbs %] +[% END #/ WRAPPER sub-header.inc %] + +
    +
    +
    +
    + [% INCLUDE 'messages.inc' %] + [% INCLUDE 'members-toolbar.inc' %] +

    Circulation quota for [% INCLUDE 'patron-title.inc' %]

    + [% IF patron.guarantor_relationships.count > 0 %] +
    +

    Guarantors quota

    +
    +
    + [% END %] +
    +

    Organization quota

    + +
    + +
    + +
    +
    +
    +
    + +
    + +
    +
    + + [% INCLUDE 'modals/quota.inc' %] + +[% MACRO jsinclude BLOCK %] + [% INCLUDE 'str/members-menu.inc' %] + [% Asset.js("js/members-menu.js") | $raw %] + [% INCLUDE 'calendar.inc' %] + [% INCLUDE 'datatables.inc' %] + [% INCLUDE 'js-date-format.inc' %] + [% INCLUDE 'js-patron-format.inc' %] + [% Asset.js("js/modals/quota.js") | $raw %]] + +[% END %] + +[% INCLUDE 'intranet-bottom.inc' %] diff --git a/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js b/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js new file mode 100644 index 00000000000..4ff63c11864 --- /dev/null +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js @@ -0,0 +1,168 @@ +(() => { + document + .getElementById("quotaModal") + ?.addEventListener("show.bs.modal", handleShowQuotaModal); + document + .getElementById("quotaForm") + ?.addEventListener("submit", handleQuotaSubmit); + document + .getElementById("deleteQuotaModal") + ?.addEventListener("show.bs.modal", handleShowDeleteModal); + document + .getElementById("deleteForm") + ?.addEventListener("submit", handleDeleteSubmit); + + async function handleQuotaSubmit(e) { + e.preventDefault(); + + const target = e.target; + if (!(target instanceof HTMLFormElement)) { + return; + } + + const formData = new FormData(target); + const quotaId = formData.get("quota_id"); + const patronId = formData.get("patron_id"); + const description = formData.get("description"); + const startDate = formData.get("start_date"); + const endDate = formData.get("end_date"); + const allocation = formData.get("allocation"); + + const quotaUrl = quotaId ? `/api/v1/patrons/${patronId}/quotas/${quotaId}` : `/api/v1/patrons/${patronId}/quotas`; + let [error, response] = await catchError( + fetch(quotaUrl, { + method: quotaId ? "PUT" : "POST", + body: JSON.stringify({ + patron_id: patronId, + description: description, + start_date: startDate, + end_date: endDate, + allocation: allocation + }), + headers: { + "Content-Type": "application/json", + }, + }) + ); + if (error || !response.ok) { + const alertContainer = document.getElementById( + "quota_result" + ); + alertContainer.outerHTML = ` +
    + ${__("Failure")} +
    + `; + + return; + } + + quota_success = true; + quota_table?.api().ajax.reload(); + + $("#quotaModal").modal("hide"); + return; + } + + function handleShowQuotaModal(e) { + const button = e.relatedTarget; + if (!button) { + return; + } + + const quotaModalLabel = document.getElementById("quotaLabel"); + const quotaModalSubmit = document.getElementById("quotaFormSubmit"); + + const quotaIdInput = document.getElementById("quota_id"); + const quotaPatronInput = document.getElementById("patron_id"); + const quotaDescriptionInput = document.getElementById("quota_description"); + const quotaStartDateInput = document.getElementById("quota_from"); + const quotaEndDateInput = document.getElementById("quota_to"); + const quotaAllocationInput = document.getElementById("quota_allocation"); + + const quota = button.dataset.quota; + if (quota) { + quotaIdInput.value = quota; + quotaModalLabel.textContent = _("Edit quota"); + quotaModalSubmit.innerHTML = " " + _("Update"); + quotaDescriptionInput.value = button.dataset.description; + quotaStartDateInput._flatpickr.setDate(button.dataset.start_date, 1); + quotaEndDateInput._flatpickr.setDate(button.dataset.end_date, 1); + quotaAllocationInput.value = button.dataset.allocation; + } else { + quotaIdInput.value = null; + quotaModalLabel.textContent = _("Add quota"); + quotaModalSubmit.innerHTML = " " + _("Add"); + quotaDescriptionInput.value = null; + quotaStartDateInput.value = null; + quotaEndDateInput.value = null; + quotaAllocationInput.value = null; + } + + const patron = button.dataset.patron; + quotaPatronInput.value = patron; + + return; + } + + async function handleDeleteSubmit(e) { + e.preventDefault(); + + const target = e.target; + if (!(target instanceof HTMLFormElement)) { + return; + } + + const formData = new FormData(target); + const quotaId = formData.get("quota_id"); + const patronId = formData.get("patron_id"); + + const quotaUrl = `/api/v1/patrons/${patronId}/quotas/${quotaId}`; + let [error, response] = await catchError( + fetch(quotaUrl, { + method: "DELETE", + headers: { + "Content-Type": "application/json", + }, + }) + ); + if (error || !response.ok) { + const alertContainer = document.getElementById( + "quota_result" + ); + alertContainer.outerHTML = ` +
    + ${__("Failure")} +
    + `; + + return; + } + + quota_table?.api().ajax.reload(); + + $("#deleteQuotaModal").modal("hide"); + return; + } + + function handleShowDeleteModal(e) { + const button = e.relatedTarget; + if (!button) { + return; + } + + const quotaIdInput = document.getElementById("quota_id_delete"); + const quotaPatronInput = document.getElementById("patron_id_delete"); + + const quota = button.dataset.quota; + quotaIdInput.value = quota; + const patron = button.dataset.patron; + quotaPatronInput.value = patron; + + return; + } + + function catchError(promise) { + return promise.then(data => [undefined, data]).catch(error => [error]); + } +})(); diff --git a/members/circulation_quota.pl b/members/circulation_quota.pl new file mode 100755 index 00000000000..ccf5f2ab3eb --- /dev/null +++ b/members/circulation_quota.pl @@ -0,0 +1,62 @@ +#!/usr/bin/perl + +# Copyright 2025 PTFS Europe +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; + +use CGI qw ( -utf8 ); + +use C4::Auth qw( get_template_and_user ); +use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers ); +use List::MoreUtils qw( any uniq ); +use Koha::DateUtils qw( dt_from_string ); +use Koha::ActionLogs; + +use Koha::Patrons; +use Koha::Patron::Categories; + +my $input = CGI->new; + +my ( $template, $loggedinuser, $cookie ) = get_template_and_user( + { + template_name => "members/circulation_quota.tt", + query => $input, + type => "intranet", + flagsrequired => { borrowers => 'edit_borrowers' }, + } +); + +my $op = $input->param('op') || ''; +my $patron; +if ( $input->param('borrowernumber') ) { + my $borrowernumber = $input->param('borrowernumber'); + $patron = Koha::Patrons->find($borrowernumber); +} + +my $logged_in_user = Koha::Patrons->find($loggedinuser); +output_and_exit_if_error( + $input, $cookie, $template, + { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } +); + +$template->param( + patron => $patron, + quotaview => 1 +); +output_html_with_http_headers $input, $cookie, $template->output; + -- 2.48.1