[Bug 15261] Verify if checkout or hold request periods overlap with existing holds
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=15261 --- Comment #93 from Fridolin Somers <fridolin.somers@biblibre.com> --- diff --git a/circ/circulation.pl b/circ/circulation.pl index 5ec80c8f15..abfbb9306c 100755 --- a/circ/circulation.pl +++ b/circ/circulation.pl @@ -410,6 +410,10 @@ if (@$barcodes) { } unless($confirm_required) { my $switch_onsite_checkout = exists $messages->{ONSITE_CHECKOUT_WILL_BE_SWITCHED}; + if ( $cancelreserve eq 'cancel' ) { + CancelReserve({ reserve_id => $query->param('reserveid') }); + } + $cancelreserve = $cancelreserve eq 'revert' ? 'revert' : undef; CancelReserve does not exist anymore, see Bug 19059 -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org