From a977e12191155ea95d351e274887ff3e256a2959 Mon Sep 17 00:00:00 2001 From: Liz Rea Date: Wed, 17 Apr 2019 05:20:23 +0000 Subject: [PATCH] Bug 22664: More making acquisitions links more easily clickable To test: * create a basket with an order from a staged record, and an order from a suggestion * add that basket to a basket group when you close it. * note that the links to the basket in the first column, the link to the basket group in the second column, and the link to the suggester in the summary column are very small (only the ID# is linked) * apply this patch, restart the things * refresh the page, note that the previously ogled links are now bigger and easier to find and click, and that the links work and such * rejoice. --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt index b34894d7d9..0a319f1938 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt @@ -129,10 +129,10 @@ [% FOREACH loop_order IN loop_orders %] - [% loop_order.basketname | html %] ([% loop_order.basketno | html %]) + [% loop_order.basketname | html %] ([% loop_order.basketno | html %]) [% IF loop_order.basketgroupid %] - [% loop_order.basketgroupname | html %] ([% loop_order.basketgroupid | html %]) + [% loop_order.basketgroupname | html %] ([% loop_order.basketgroupid | html %]) [% ELSE %] No basket group [% END %] @@ -150,8 +150,7 @@ [% END %] [% IF ( loop_order.suggestionid ) %]
- Suggested by: [% loop_order.surnamesuggestedby | html %][% IF ( loop_order.firstnamesuggestedby ) %], [% loop_order.firstnamesuggestedby | html %] [% END %] - (suggestion #[% loop_order.suggestionid | html %]) + Suggested by: [% loop_order.surnamesuggestedby | html %][% IF ( loop_order.firstnamesuggestedby ) %], [% loop_order.firstnamesuggestedby | html %] [% END %]( #[% loop_order.suggestionid | html %]) [% END %]
[% IF ( loop_order.order_internalnote ) %] @@ -276,10 +275,10 @@ [% FOREACH order IN loop_received %] - [% order.basketname | html %] ([% order.basketno | html %]) + [% order.basketname | html %] ([% order.basketno | html %]) [% IF order.basketgroupid %] - [% order.basketgroupname | html %] ([% order.basketgroupid | html %]) + [% order.basketgroupname | html %] ([% order.basketgroupid | html %]) [% ELSE %] No basket group [% END %] -- 2.11.0