From e90f2ed8f634805a8172902efb490e0d0bcd4755 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 13 Jan 2020 14:30:35 +0100 Subject: [PATCH] Bug 24410: Fix multi holds Bug 19618 replaces the call to placerequest.pl with a REST API /holds That is wrong as it does not support multi holds. Test plan: Confirm that prior to this patch you are not able to place a hold on several records at once, and that this patch fixes it Signed-off-by: Julian Maurice --- koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 f55487e364..fede00d3ec 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -380,7 +380,7 @@
Hold details -
+ @@ -1028,7 +1028,7 @@ "margin-right":"0em" }); - $("#club-request-form, #hold-request-form").on("submit", function() { + $("#club-request-form").on("submit", function() { let $t = $(this); $('.clubalert, .holdalert').addClass('hide'); let biblionumbers = [biblionumber]; -- 2.20.1