From 44259fc965750cb28acb3381b57c952e83cc2c9e Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Mon, 8 Apr 2019 19:00:01 +0000 Subject: [PATCH] Bug 22664: Link names in order search results instead of numbers To test: Make up some orders, put some in basket groups. Search for your vendor's orders, note that the only thing linking to the order is a tiny number in parentheses. Apply this patch, restart the things. Refresh the results, note that te basket names *and* numbers are linked now. Rejoice. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt index c925d739e4..e685308932 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/histsearch.tt @@ -64,11 +64,11 @@ [% CASE 'cancelled' %]Cancelled [% END %] - [% order.basketname | html %] ([% order.basketno | html %]) + [% order.basketname | html %] ([% order.basketno | html %]) [% order.authorisedbyname | html %] [% IF ( order.basketgroupid ) %] - [% order.groupname | html %] ([% order.basketgroupid | html %]) + [% order.groupname | html %] ([% order.basketgroupid | html %]) [% ELSE %]   [% END %] -- 2.11.0