Bugzilla – Attachment 178587 Details for
Bug 38924
Introduce an organization level loan 'Quota' system for Koha
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38924: Add patron quota management page
Bug-38924-Add-patron-quota-management-page.patch (text/plain), 20.83 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:29:26 UTC
(
hide
)
Description:
Bug 38924: Add patron quota management page
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:29:26 UTC
Size:
20.83 KB
patch
obsolete
>From 6ec36ff8db7e27c68a02c3fa035b316109a27320 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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 @@ > </li> > [% END %] > [% END %] >+ [% IF patron.category.category_type == 'I' %] >+ <li [% IF ( quotaview ) %]class="active">[% END %]> >+ <a href="/cgi-bin/koha/members/circulation_quota.pl?borrowernumber=[% patron.borrowernumber | uri %]">Circulation quota</a> >+ </li> >+ [% END %] > [% IF CAN_user_borrowers_edit_borrowers %] > [% IF ( IntranetReadingHistoryHolds ) %] > <li [% IF holdshistoryview %]class="active"[% END %]> >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 @@ >+<!-- Add/Edit quota modal --> >+<div class="modal" id="quotaModal" tabindex="-1" role="dialog" aria-labelledby="quotaLabel"> >+ <form method="get" id="quotaForm"> >+ <div class="modal-dialog"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h1 class="modal-title" id="quotaLabel"></h1> >+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> >+ </div> >+ <div class="modal-body overflow-visible"> >+ <div id="quota_result"></div> >+ <input type="hidden" name="quota_id" id="quota_id"> >+ <input type="hidden" name="patron_id" id="patron_id"> >+ <fieldset class="rows"> >+ <ol> >+ <li> >+ <label class="required" for="description">Description: </label> >+ <input type="text" id="quota_description" name="description" required="required"> >+ <span class="required">Required</span> >+ </li> >+ <li> >+ <label for="quota_from" class="required"> >+ Start date: >+ </label> >+ <input type="text" id="quota_from" name="start_date" maxlength="10" size="10" class="flatpickr" data-date_to="quota_to" /> >+ <span class="required">Required</span> >+ <div class="hint">[% INCLUDE 'date-format.inc' %]</div> >+ </li> >+ <li> >+ <label for="quota_to" class="required"> >+ End date: >+ </label> >+ <input type="text" id="quota_to" name="end_date" maxlength="10" size="10" class="flatpickr" /> >+ <span class="required">Required</span> >+ <div class="hint">[% INCLUDE 'date-format.inc' %]</div> >+ </li> >+ <li> >+ <label class="required" for="allocation">Loan allocation: </label> >+ <input type="number" min="0" id="quota_allocation" name="allocation" required="required"> >+ <span class="required">Required</span> >+ </li> >+ </ol> >+ </fieldset> <!-- /.brief --> >+ </div> <!-- /.modal-body --> >+ <div class="modal-footer"> >+ <button type="submit" class="btn btn-primary approve" id="quotaFormSubmit"></button> >+ <button type="button" class="btn btn-default deny cancel" data-bs-dismiss="modal"><i class="fa fa-times"></i> Cancel</button> >+ </div> <!-- /.modal-footer --> >+ </div> <!-- /.modal-content --> >+ </div> <!-- /.modal-dialog --> >+ </form> >+</div> <!-- /#quotaModal --> >+ >+<!-- Delete Quota modal form --> >+<div id="deleteQuotaModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="deleteQuotaModalLabel"> >+ <form method="delete" id="deleteForm"> >+ <input type="hidden" name="quota_id" id="quota_id_delete"> >+ <input type="hidden" name="patron_id" id="patron_id_delete"> >+ <div class="modal-dialog" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h4 class="modal-title" id="deleteQuotaModalLabel">Delete quota</h4> >+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> >+ </div> >+ <div class="modal-body"> >+ <p>Are you sure you want to delete this quota?</p> >+ </div> >+ <div class="modal-footer"> >+ <button type="submit" id="deleteQuotaModaConfirmBtn" class="btn btn-default approve"><i class="fa fa-check" aria-hidden="true"></i> Yes</button> >+ <button type="button" id="deleteQuotaModaCancelBtn" data-bs-dismiss="modal" class="btn btn-default deny"><i class="fa fa-times" aria-hidden="true"></i> No</button> >+ </div> >+ </div> >+ </div> >+ </form> >+</div> >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' %] >+<title>[% FILTER collapse %] >+ [% t("Circulation quota for") | html %] [% INCLUDE 'patron-title.inc' no_html = 1 %] >+ [% t("Patrons") | html %] › >+ [% t("Koha") | html %] >+[% END %]</title> >+[% INCLUDE 'doc-head-close.inc' %] >+</head> >+ >+<body id="pat_readingrec" class="pat"> >+[% WRAPPER 'header.inc' %] >+ [% INCLUDE 'patron-search-header.inc' %] >+[% END %] >+ >+[% WRAPPER 'sub-header.inc' %] >+ [% WRAPPER breadcrumbs %] >+ [% WRAPPER breadcrumb_item %] >+ <a href="/cgi-bin/koha/members/members-home.pl">Patrons</a> >+ [% END %] >+ [% WRAPPER breadcrumb_item %] >+ <a href="/cgi-bin/koha/members/moremember.pl?borrowernumber=[% patron.borrowernumber | uri %]">[% INCLUDE 'patron-title.inc' %]</a> >+ [% END %] >+ [% WRAPPER breadcrumb_item bc_active= 1 %] >+ <span>Circulation quotas</span> >+ [% END %] >+ [% END #/ WRAPPER breadcrumbs %] >+[% END #/ WRAPPER sub-header.inc %] >+ >+<div class="main container-fluid"> >+ <div class="row"> >+ <div class="col-md-10 order-md-2 order-sm-1"> >+ <main> >+ [% INCLUDE 'messages.inc' %] >+ [% INCLUDE 'members-toolbar.inc' %] >+ <h1>Circulation quota for [% INCLUDE 'patron-title.inc' %]</h1> >+ [% IF patron.guarantor_relationships.count > 0 %] >+ <div class="page-section"> >+ <h2>Guarantors quota</h2> >+ <table id="guarantors_quota"></table> >+ </div> >+ [% END %] >+ <div class="page-section"> >+ <h2>Organization quota</h2> >+ >+ <div id="quota-toobar" class="btn-toolbar"> >+ <button class="btn btn-default" data-bs-toggle="modal" data-bs-target="#quotaModal" data-patron="[% patron.borrowernumber | html %]"><i class="fa fa-plus" aria-hidden="true"></i> Add a new quota</button> >+ </div> >+ >+ <table id="patrons_quota"></table> >+ </div> >+ </main> >+ </div> <!-- /.col-md-10.order-md-2.order-sm-1 --> >+ >+ <div class="col-md-2 order-sm-2 order-md-1"> >+ <aside> >+ [% INCLUDE 'circ-menu.inc' %] >+ </aside> >+ </div> <!-- /.col-md-2.order-sm-2.order-md-1 --> >+ </div> <!-- /.row --> >+ >+ [% 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 %]] >+ <script> >+ var quota_url= "/api/v1/patrons/%s/quotas".format(borrowernumber); >+ let quota_table = $('#patrons_quota').kohaTable({ >+ "ajax": { >+ "url": quota_url >+ }, >+ "embed": [ >+ ], >+ "columns": [{ >+ "data": "id", >+ "title": _("Quota ID"), >+ "visible": false >+ }, >+ { >+ "data": "description", >+ "title": _("Description"), >+ "visible": true, >+ }, >+ { >+ "data": "start_date", >+ "title": _("Start date"), >+ "searchable": true, >+ "orderable": true, >+ "render": function(data, type, row, meta) { >+ return $date(row.start_date); >+ } >+ }, >+ { >+ "data": "end_date", >+ "title": _("End date"), >+ "searchable": true, >+ "orderable": true, >+ "render": function(data, type, row, meta) { >+ return $date(row.end_date); >+ } >+ }, >+ { >+ "data": "allocation:used", >+ "title": _("Allocation (Used:Total)"), >+ "searchable": true, >+ "orderable": true, >+ "render": function(data, type, row, meta) { >+ let used = row.used > row.allocation ? "<span class='text-danger'>" + row.used + "</span>" : "<span class='text-success'>" + row.used + "</span>"; >+ return used + " : " + row.allocation; >+ } >+ }, >+ { >+ "data": "", >+ "title": _("Actions"), >+ "class": "actions", >+ "searchable": false, >+ "orderable": false, >+ "render": function(data, type, row, meta) { >+ let result = '<button type="button" class="btn btn-default btn-xs edit-action" data-bs-toggle="modal" data-bs-target="#quotaModal" data-quota="%s" data-patron="%s" data-description="%s" data-start_date="%s" data-end_date="%s" data-allocation="%s"><i class="fa fa-pencil" aria-hidden="true"></i> %s</button>'.format(row.id, row.patron_id, row.description, row.start_date, row.end_date, row.allocation, _("Edit")); >+ if ( row.used === 0 ) { >+ result += '<button type="button" class="btn btn-default btn-xs delete-action" data-bs-toggle="modal" data-bs-target="#deleteQuotaModal" data-quota="%s" data-patron="%s"><i class="fa fa-trash-can" aria-hidden="true"></i> %s</button>'.format(row.id, row.patron_id, _("Delete")); >+ } >+ return result; >+ } >+ }] >+ }, undefined, 0, undefined); >+ >+ </script> >+[% 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 = ` >+ <div id="quota_result" class="alert alert-danger"> >+ ${__("Failure")} >+ </div> >+ `; >+ >+ 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 = "<i class=\"fa fa-check\"></i> " + _("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 = "<i class=\"fa fa-fw fa-plus\"></i> " + _("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 = ` >+ <div id="quota_result" class="alert alert-danger"> >+ ${__("Failure")} >+ </div> >+ `; >+ >+ 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 <http://www.gnu.org/licenses>. >+ >+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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38924
:
178582
|
178583
|
178584
|
178585
|
178586
| 178587 |
178588
|
178589
|
178590
|
178591
|
178592
|
178593
|
178594
|
178595
|
178596
|
178597
|
178598
|
178599
|
178600
|
178601
|
178602
|
178603
|
178604
|
178605
|
178606
|
178607
|
178608