From 6e97828154eff18debc82916988fd55e532d0127 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 10 Oct 2025 10:42:31 +0200 Subject: [PATCH] Bug 40760: Format 'Edit' link in item receive table as link When receiving items in the acq module, the "Edit" link in the items table for orders with items created when ordering is not recognizable as link, but appears just formatted as normal text. To test: * Create a basket with items 'on order' * Add an order line with 2+ items * Close basket * Receive shipment for the same vendor * Click on "receive" link * Verify the "Edit" in the items table on the left is formatted as a link Signed-off-by: Owen Leonard --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt index 8cb5d28e09..ec2e3033ed 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt @@ -468,7 +468,7 @@ item._checked = $(this).prop('checked'); }); tr.append($('').append(chb)); - tr.append(''+EDIT[0].toUpperCase()+EDIT.substr(1).toLowerCase()+''); + tr.append(''+EDIT[0].toUpperCase()+EDIT.substr(1).toLowerCase()+''); tr.append(''+(item.external_id||'')+''); tr.append(''+display_string( 'home_library_id', item._strings, item.home_library_id ) || ''+''); tr.append(''+display_string( 'holding_library_id', item._strings, item.holding_library_id )+''); -- 2.39.5