From 1f342af1ab3a833a0a1e7e763ea15fec0135eed8 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Fri, 6 Mar 2026 00:09:31 +0000 Subject: [PATCH] Bug 32419: Show item availability on lists view To test: 1. Create or use a biblio record with multiple items, for example biblionumber 235. 2. Check out an item attached to the record to a patron, i.e. check out barcode 39999000010190 to your logged in user 3. Go to the Detail view for this record. 4. Edit another item attached to the record and give it a not for loan status, i.e. edit barcode 39999000010213 and set it to Not for loan 5. Click the Add to list button above the record. Add the record to an existing list, or create a new one and Save. 6. Go to the Lists module in the staff interface and view the contents of the list you just added your record to. 7. Confirm you see accurate Availability information in the list results within the callnumber column. Sponsored-by: Pymble Ladies' College --- .../intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt index 65047eb133b..4ea95943af2 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt @@ -394,6 +394,7 @@ [% IF ( item.itemcallnumber ) %] [[% item.itemcallnumber | html %]] [% END %] + [% INCLUDE "item-status.inc" item=item %] [% END # /FOREACH item %] -- 2.39.5