Bugzilla – Attachment 178607 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 quota usage details modal
Bug-38924-Add-quota-usage-details-modal.patch (text/plain), 22.69 KB, created by
Martin Renvoize (ashimema)
on 2025-02-24 16:30:17 UTC
(
hide
)
Description:
Bug 38924: Add quota usage details modal
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-02-24 16:30:17 UTC
Size:
22.69 KB
patch
obsolete
>From e767a549b8607448fff68b9b26fa3fc2f2da8040 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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 @@ > </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"> >+ <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"> >+ <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" /> >+ <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" /> >+ <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"> >+ <input type="text" inputmode="numeric" pattern="[0-9]{1,4}" id="quota_allocation" name="allocation" title="a number between 0 and 9999 (inclusive)" required="required" /> > <span class="required">Required</span> > </li> > </ol> >- </fieldset> <!-- /.brief --> >- </div> <!-- /.modal-body --> >+ </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 --> >+ </div> >+ <!-- /.modal-footer --> >+ </div> >+ <!-- /.modal-content --> >+ </div> >+ <!-- /.modal-dialog --> > </form> >-</div> <!-- /#quotaModal --> >+</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"> >+ <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"> >@@ -73,3 +75,21 @@ > </div> > </form> > </div> >+ >+<!-- Quota usage modal --> >+<div id="quotaUsageModal" class="modal" tabindex="-1" role="dialog" aria-labelledby="quotaUsageModalLabel"> >+ <div class="modal-dialog" role="document"> >+ <div class="modal-content"> >+ <div class="modal-header"> >+ <h4 class="modal-title" id="quotaUsageModalLabel">Quota usage details</h4> >+ <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> >+ </div> >+ <div class="modal-body"> >+ <table id="usage_detail"></table> >+ </div> >+ <div class="modal-footer"> >+ <button type="button" id="quotaUsageModalCloseBtn" data-bs-dismiss="modal" class="btn btn-default deny"><i class="fa fa-times" aria-hidden="true"></i> Close</button> >+ </div> >+ </div> >+ </div> >+</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 >index 6119d21a515..35b80e2dbf9 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/circulation_quota.tt >@@ -8,11 +8,14 @@ > [% 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> >+<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> > >@@ -43,10 +46,10 @@ > [% 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> >+ <div class="page-section"> >+ <h2>Guarantors quota</h2> >+ <table id="guarantors_quota"></table> >+ </div> > [% END %] > <div class="page-section"> > <h2>Organization quota</h2> >@@ -58,16 +61,17 @@ > <table id="patrons_quota"></table> > </div> > </main> >- </div> <!-- /.col-md-10.order-md-2.order-sm-1 --> >+ </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' %] >+ <aside> [% INCLUDE 'circ-menu.inc' %] </aside> >+ </div> >+ <!-- /.col-md-2.order-sm-2.order-md-1 --> >+ </div> >+ <!-- /.row --> >+</div> >+[% 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 %]] > <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, >- }, >+ var quota_url = "/api/v1/patrons/%s/quotas".format(borrowernumber); >+ let quota_table = $("#patrons_quota").kohaTable( > { >- "data": "start_date", >- "title": _("Start date"), >- "searchable": true, >- "orderable": true, >- "render": function(data, type, row, meta) { >- return $date(row.start_date); >- } >+ 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 render = '<div class="d-flex">'; >+ render += '<div class="p-2 flex-grow-1">'; >+ render += used + " : " + row.allocation; >+ render += '</div><div class="p-2">'; >+ render += '<span class="text-end">(<a href="#" data-bs-toggle="modal" data-bs-target="#quotaUsageModal" data-quota="%s" data-patron="%s">%s</a>)</span>'.format(row.id, row.patron_id, _("details")); >+ render += "</div></div>"; >+ return render; >+ }, >+ }, >+ { >+ 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; >+ }, >+ }, >+ ], > }, >- { >- "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); >- >+ 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 >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 = ` > <div id="quota_result" class="alert alert-danger"> > ${__("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 = "<i class=\"fa fa-check\"></i> " + _("Update"); >+ 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); >+ 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"); >+ quotaModalLabel.textContent = __("Add quota"); >+ quotaModalSubmit.innerHTML = >+ '<i class="fa fa-fw fa-plus"></i> ' + __("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 = ` > <div id="quota_result" class="alert alert-danger"> > ${__("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
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