From e767a549b8607448fff68b9b26fa3fc2f2da8040 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 11 Feb 2025 12:04:57 +0000 Subject: [PATCH] Bug 38924: Add quota usage details modal --- .../prog/en/includes/modals/quota.inc | 60 ++++-- .../en/modules/members/circulation_quota.tt | 182 ++++++++++-------- .../intranet-tmpl/prog/js/modals/quota.js | 112 +++++++++-- 3 files changed, 242 insertions(+), 112 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc index c7fe8d8f1a8..bf76aedc1b8 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/modals/quota.inc @@ -9,53 +9,55 @@ + + + + - - + + + + + + - + + +
- -
- - - [% INCLUDE 'modals/quota.inc' %] + + + + + + +[% INCLUDE 'modals/quota.inc' %] [% MACRO jsinclude BLOCK %] [% INCLUDE 'str/members-menu.inc' %] @@ -76,70 +80,94 @@ [% INCLUDE 'datatables.inc' %] [% INCLUDE 'js-date-format.inc' %] [% INCLUDE 'js-patron-format.inc' %] + [% INCLUDE 'js-biblio-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 index 4ff63c11864..b6a795217d4 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js +++ b/koha-tmpl/intranet-tmpl/prog/js/modals/quota.js @@ -11,6 +11,9 @@ document .getElementById("deleteForm") ?.addEventListener("submit", handleDeleteSubmit); + document + .getElementById("quotaUsageModal") + ?.addEventListener("show.bs.modal", handleShowQuotaUsageModal); async function handleQuotaSubmit(e) { e.preventDefault(); @@ -28,7 +31,9 @@ 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`; + 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", @@ -37,7 +42,7 @@ description: description, start_date: startDate, end_date: endDate, - allocation: allocation + allocation: allocation, }), headers: { "Content-Type": "application/json", @@ -45,9 +50,7 @@ }) ); if (error || !response.ok) { - const alertContainer = document.getElementById( - "quota_result" - ); + const alertContainer = document.getElementById("quota_result"); alertContainer.outerHTML = `
${__("Failure")} @@ -75,24 +78,31 @@ const quotaIdInput = document.getElementById("quota_id"); const quotaPatronInput = document.getElementById("patron_id"); - const quotaDescriptionInput = document.getElementById("quota_description"); + 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 quotaAllocationInput = + document.getElementById("quota_allocation"); const quota = button.dataset.quota; if (quota) { quotaIdInput.value = quota; - quotaModalLabel.textContent = _("Edit quota"); - quotaModalSubmit.innerHTML = " " + _("Update"); + quotaModalLabel.textContent = __("Edit quota"); + quotaModalSubmit.innerHTML = + ' ' + __("Update"); quotaDescriptionInput.value = button.dataset.description; - quotaStartDateInput._flatpickr.setDate(button.dataset.start_date, 1); + 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"); + quotaModalLabel.textContent = __("Add quota"); + quotaModalSubmit.innerHTML = + ' ' + __("Add"); quotaDescriptionInput.value = null; quotaStartDateInput.value = null; quotaEndDateInput.value = null; @@ -127,9 +137,7 @@ }) ); if (error || !response.ok) { - const alertContainer = document.getElementById( - "quota_result" - ); + const alertContainer = document.getElementById("quota_result"); alertContainer.outerHTML = `
${__("Failure")} @@ -162,6 +170,80 @@ return; } + function handleShowQuotaUsageModal(e) { + const button = e.relatedTarget; + if (!button) { + return; + } + + const quota = button.dataset.quota; + const patron = button.dataset.patron; + + // Destroy any existing DataTable instance to prevent duplication + if ($.fn.DataTable.isDataTable("#usage_detail")) { + $("#usage_detail").DataTable().destroy(); + } + + // Initialize DataTable + let usage_url = "/api/v1/patrons/%s/quotas/%s/usages".format( + patron, + quota + ); + $("#usage_detail").kohaTable({ + ajax: { + url: usage_url, + }, + embed: ["patron", "checkout.item.biblio"], + columns: [ + { + title: __("Date"), + data: "creation_date", + searchable: true, + orderable: true, + render: function (data, type, row, meta) { + return $date(row.creation_date); + }, + }, + { + title: __("Patron"), + data: "patron", + render: function (data, type, row, meta) { + return $patron_to_html(row.patron, { + display_cardnumber: false, + url: true, + }); + }, + }, + { + title: __("Item"), + data: "checkout.item.biblio.title", + render: function (data, type, row, meta) { + if (row.checkout) { + return $biblio_to_html(row.checkout.item.biblio, { + link: 1, + }); + } else { + return __("Circulation history removed"); + } + }, + }, + { + title: __("Usage Type"), + data: "type", + searchable: true, + orderable: true, + render: function (data, type, row, meta) { + return row.type; + }, + }, + ], + paging: true, + searching: true, + lengthChange: false, + }); + return; + } + function catchError(promise) { return promise.then(data => [undefined, data]).catch(error => [error]); } -- 2.48.1