From 711ba1704ad98bc1ee993a432c9faac5944495d4 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Wed, 12 Jun 2024 08:59:54 +0000 Subject: [PATCH] Bug 14787: Remember confirmations for a patron session This patch adds functionality that will remember whether an action has been confirmed for a particular patron for the session. While carrying out an action on that patron, if the same checkout confirmation message keeps appearing the user can now select to remember their confirmation while they are still working on that patron. When the user moves onto a new patron the confirmations then reset and accumulate again for the new patron. Test plan: We're going to use rental fees as the example to prompt the checkout confirmation dialog. If you wish to use something else to test then feel free, it should work the same. Do not use patron debts though, as we already track a confirmation for this elsewhere and the test plan will appear to fail when in fact it is behaving as expected 1) In system preferences set RentalFeesCheckoutConfirmation to 'ask' 2) Choose a patron and checkout an item to that patron that incurrs a rental charge (in KTD this will be any item that does not have an itype of 'BK', 'REF' or 'VM' 3) A dialog should display asking you to confirm the checkout. 4) There should be a checkbox on the dialog to "Remember for the session for this patron" 5) Click Yes, checkout out without checking this checkbox 6) Select another item and checkout - the dialog should display again 7) This time, check the checkbox and click Yes, check out 8) Checkout another item (depending on your fines limit settings, you may need to pay the rental charges before the system will allow you to checkout again so go ahead and do this) 9) This time the dialog should not appear as the system has remembered our confirmation for this patron for the session 10) Choose a new patron 11) Repeat steps 2 - 9 12) It should work as outlined above 13) Sign off! --- circ/circulation.pl | 22 +++++++++--- .../prog/en/modules/circ/circulation.tt | 18 ++++++++-- koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 34 +++++++++++++++++++ 3 files changed, 67 insertions(+), 7 deletions(-) diff --git a/circ/circulation.pl b/circ/circulation.pl index 2ae9447cf61..2f0f2855e8a 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -472,13 +472,14 @@ if (@$barcodes && $op eq 'cud-checkout') { $template_params->{ADDITIONAL_MATERIALS} = $materials; $template_params->{itemhomebranch} = $item->homebranch; + my $patron_session_confirmation = $query->cookie('patronSessionConfirmation') || undef; + my ( $patron_for_session, $session_confirmations ) = split( /:/, $patron_session_confirmation, 2 ); + my $patron_match = $borrowernumber == $patron_for_session; + my @conf_keys = split( /\|/, $session_confirmations ); + $template_params->{sessionConfirmationKeys} = (); + # pass needsconfirmation to template if issuing is possible and user hasn't yet confirmed. foreach my $needsconfirmation_key ( keys %$needsconfirmation ) { - $template_params->{$needsconfirmation_key} = $needsconfirmation->{$needsconfirmation_key}; - $template_params->{getTitleMessageIteminfo} = $biblio->title; - $template_params->{getBarcodeMessageIteminfo} = $item->barcode; - $template_params->{NEEDSCONFIRMATION} = 1; - $confirm_required = 1; if ( $needsconfirmation_key eq 'BOOKED_TO_ANOTHER' ) { my $rule = Koha::CirculationRules->get_effective_rule( { @@ -493,6 +494,17 @@ if (@$barcodes && $op eq 'cud-checkout') { ->subtract( days => $preparation_period ); $template_params->{reduceddue} = $reduceddue; } + next + if $patron_match + && scalar(@conf_keys) > 0 + && grep( { $needsconfirmation_key eq $_ } @conf_keys ); + + $template_params->{$needsconfirmation_key} = $needsconfirmation->{$needsconfirmation_key}; + $template_params->{getTitleMessageIteminfo} = $biblio->title; + $template_params->{getBarcodeMessageIteminfo} = $item->barcode; + $template_params->{NEEDSCONFIRMATION} = 1; + $confirm_required = 1; + push( @{ $template_params->{sessionConfirmationKeys} }, $needsconfirmation_key ); } } unless ($confirm_required) { diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index c31e66bd869..79c931567c3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -277,11 +277,14 @@ [% IF CAN_user_circulate_force_checkout or HIGHHOLDS %] -
+ [% INCLUDE 'csrf-token.inc' %]
+ [% FOREACH conf IN sessionConfirmationKeys %] + + [% END %] [% IF (forceallow) %][% END %] @@ -376,6 +379,10 @@ [% IF ( RENEW_ISSUE ) %] [% ELSE %] +

+ + +

[% END %] @@ -386,10 +393,13 @@ [% END # /IF CAN_user_circulate_force_checkout or HIGHHOLDS %] [% IF ADDITIONAL_MATERIALS && !CAN_user_circulate_force_checkout %] - + [% INCLUDE 'csrf-token.inc' %] + [% FOREACH conf IN sessionConfirmationKeys %] + + [% END %] [% IF (forceallow) %][% END %] @@ -403,6 +413,10 @@ [% IF ( RENEW_ISSUE ) %] [% ELSE %] +

+ + +

[% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js index a27fd722cfb..7a919241684 100644 --- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js +++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js @@ -1286,4 +1286,38 @@ $(document).ready(function() { $("#return-claims-table").DataTable().search("is_unresolved").draw(); }); + $(".confirmation-required-form").on("submit", function (e) { + + var currentCookieValue = Cookies.get("patronSessionConfirmation") || ''; + var currentPatron = currentCookieValue.split(':')[0] || null; + + var rememberForSession = $('#patron_session_confirmation').is(":checked"); + var sessionConfirmations = [] + $('input[name^=session_confirmations]').each(function() { + sessionConfirmations.push($(this).val()); + }); + + if(currentPatron != borrowernumber && !rememberForSession) { + Cookies.set("patronSessionConfirmation", borrowernumber + ':', { sameSite: 'Lax' }); + return true + } + + if(currentPatron == borrowernumber && rememberForSession) { + sessionConfirmations.forEach(function(sessionConfirmation) { + currentCookieValue += sessionConfirmation + '|'; + }) + Cookies.set("patronSessionConfirmation", currentCookieValue, { sameSite: 'Lax' }); + return true + } + + if(currentPatron != borrowernumber && rememberForSession) { + var newCookieValue = borrowernumber + ':'; + sessionConfirmations.forEach(function(sessionConfirmation) { + newCookieValue += sessionConfirmation + '|'; + }) + Cookies.set("patronSessionConfirmation", newCookieValue, { sameSite: 'Lax' }); + return true + } + return true + }); }); -- 2.39.3 (Apple Git-146)