From 11ca602598ea17c3f31ceb2ebaa73bf75438d183 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 21 Jun 2016 09:52:47 -0400 Subject: [PATCH] Bug 16787: 'Too many holds' message appears inappropriately and is missing data This patch alters C4/Reserves.pm to pass back 'noReservesAllowed' when allowedreserves=0. This allows passing to the user an appropriate message about the availability of items for holds To test: 1 - Set an item type to allow no holds 2 - Attempt to place a hold for a patron 3 - Message should be "No holds allowed: [Firstname Surname] cannot place holds on any of these items" 4 - Try placing a multihold with the record above and a holdable record, message should end "...cannot place holds on some of these titles' items" --- C4/Reserves.pm | 3 +++ koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 9 +++++++-- reserve/request.pl | 7 +++++++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 73b86b6..4e9a1b9 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -394,6 +394,9 @@ sub CanItemBeReserved { } # we check if it's ok or not + if( $allowedreserves == 0 ){ + return 'noReservesAllowed'; + } if ( $reservecount >= $allowedreserves ) { return 'tooManyReserves'; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt index 4a1d6a3..d0a16fd 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -297,8 +297,10 @@ function checkMultiHold() { [% UNLESS ( multi_hold ) %]

Cannot place hold

[% ELSE %]

Cannot place hold on some items

+ [% IF ( no_reserves_allowed) %] +
  • No holds allowed: [% borrowerfirstname %] [% borrowersurname %] cannot place holds on some of these title's items.
  • + [% END %] [% IF ( exceeded_maxreserves ) %]
  • Too many holds: [% patron.firstname %] [% patron.surname %] can place [% new_reserves_allowed %] of the requested [% new_reserves_count %] holds for a maximum of [% maxreserves %] total holds.
  • [% ELSIF ( exceeded_holds_per_record ) %] diff --git a/reserve/request.pl b/reserve/request.pl index d94a8ab..d49194b 100755 --- a/reserve/request.pl +++ b/reserve/request.pl @@ -149,6 +149,8 @@ if ($borrowernumber_hold && !$action) { my $new_reserves_count = scalar( @biblionumbers ); my $maxreserves = C4::Context->preference('maxreserves'); + $template->param( maxreserves => $maxreserves ); + if ( $maxreserves && ( $reserves_count + $new_reserves_count > $maxreserves ) ) { @@ -198,6 +200,7 @@ my $logged_in_patron = Koha::Patrons->find( $borrowernumber ); my $itemdata_enumchron = 0; my @biblioloop = (); +my $no_reserves_allowed = 0; foreach my $biblionumber (@biblionumbers) { next unless $biblionumber =~ m|^\d+$|; @@ -214,6 +217,9 @@ foreach my $biblionumber (@biblionumbers) { #All is OK and we can continue } + elsif ( $canReserve eq 'noReservesAllowed') { + $no_reserves_allowed = 1; + } elsif ( $canReserve eq 'tooManyReserves' ) { $exceeded_maxreserves = 1; } @@ -615,6 +621,7 @@ foreach my $biblionumber (@biblionumbers) { $template->param( biblioloop => \@biblioloop ); $template->param( biblionumbers => $biblionumbers ); +$template->param( no_reserves_allowed => $no_reserves_allowed ); $template->param( exceeded_maxreserves => $exceeded_maxreserves ); $template->param( exceeded_holds_per_record => $exceeded_holds_per_record ); -- 2.1.4