From 4fdfb7e49000bda73bc1a3f80e67c643f79ac70b Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 13 Nov 2023 16:02:46 +0000 Subject: [PATCH] Bug 35307: Add a hidden input for expired holds MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit To test: 1 - Place 3 holds on a bib, each for a different patron 2 - IN the db, set the first hold to be expired: UPDATE reserves SET expirationdate='2023-01-01' WHERE reserve_id=1; 3 - Refresh the holds page for the biblio 4 - Note the first hold now says 'Expired' in the expiration date column 5 - Set an expiration date for the last hold 6 - Click 'Update holds' 7 - Note the date is applied to the second hold 8 - Delete the holds 9 - Apply patch 10 - Repeat 1-6 11 - Confirm only the correct hold is updated Signed-off-by: David Nind Signed-off-by: Victor Grousset/tuxayo (cherry picked from commit ca5378cd946fd3c5496dab155ff112f0c245f71b) Signed-off-by: Frédéric Demians --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc index d17639e41e..a403b0abc7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -129,6 +129,7 @@ [% ELSE %] [% hold.expirationdate | $KohaDates %] + [% END %] -- 2.39.5