From 9c5624055870298a8150299b3d597b5a00c57761 Mon Sep 17 00:00:00 2001 From: Andrew Fuerste Henry Date: Wed, 7 Jan 2026 17:18:25 +0000 Subject: [PATCH] Bug 41539: Add item barcode to hold waiting message To test: 1 - have or create a waiting hold 2 - go to the patron's record, see your waiting hold is listed in the patron messages but does not include barcode 3 - apply patch, reload page 4 - confirm item barcode appears on both Check Out and Details pages, for holds waiting both at your current branch and at another branch --- koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc index 93ce0b53bed..e44f37ec457 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc @@ -250,6 +250,7 @@ [% w.biblio.title | html %] ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% w.item.barcode %]) Hold placed on [% w.reservedate | $KohaDates %].
[% SET expires_on = w.expirationdate %] Waiting here [% IF expires_on %]until [% expires_on | $KohaDates %][% END %]. @@ -269,6 +270,7 @@ [% w.biblio.title | html %] ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% w.item.barcode %]) Hold placed on [% w.reservedate | $KohaDates %].
[% SET expires_on = w.expirationdate %] Waiting at [% w.branch.branchname | html %] [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] -- 2.39.5