From e68c68291420301aa10ece36571e8c542a6304fa Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 5 Dec 2023 15:47:23 +0000 Subject: [PATCH] Bug 35489: [23.05.x] Add a hidden input for itemnumber even if item has no barcode This page is a single form, all fields must have inputs to avoid data loss/mismatch To test: 1 - Find a record in the catalog and add or edit items to have one item with a barcode and one without 2 - Place an item level hold on the item with no barcode 3 - Place another hold for a different patron on the item with a barcode 4 - From the holds table add an expiration date to the hold with a barcode and save 5 - Note the hold on the item with no barcode is now on the item with a barcode and the other hold is now a next available hold 6 - Delete the holds 7 - Apply patch 8 - Repeat 2-4 9 - Confirm the itemnumbers for the holds have not changed Signed-off-by: Andrew Fuerste-Henry Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Lucas Gass --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 24905d7d24..e17a73b024 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -169,10 +169,10 @@ [%- IF ( hold.barcodenumber ) -%] [%- hold.barcodenumber | html -%] - [%- ELSE -%] No barcode [%- END -%] + [%- ELSE -%] [%- IF ( hold.item_level_hold ) -%] @@ -181,10 +181,10 @@ [%- IF ( hold.barcodenumber ) -%] [%- hold.barcodenumber | html -%] - [%- ELSE -%] No barcode [%- END -%] + [%- ELSE -%] -- 2.39.2