From d25840fc68bcacd8a8509713549b10753bdcd128 Mon Sep 17 00:00:00 2001 From: Andreas Roussos Date: Sat, 10 Sep 2016 14:41:54 +0300 Subject: [PATCH] Bug 7039 - Link to existing record from result list in acquisition search MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In the Staff client -> Acquisitions, when creating orders from existing records the result list should link to the existing records so that it's possible to check for existing items. This patch adds that functionality. Test plan: 1) In the Staff client, go to Acquisitions and try to add an order from existing records. 2) Observe that the titles in the Summary column are not hyperlinks. 3) Apply the patch. 4) Repeat step 1), and confirm that the titles are now links pointing to each biblio's details page. Followed test plan, works as expected. Signed-off-by: Marc Véron Signed-off-by: Katrin Fischer Signed-off-by: Kyle M Hall --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt index baf70cf5c0..21b428cfac 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderbiblio.tt @@ -74,7 +74,7 @@ [% FOREACH biblio IN resultsloop %] -

[% biblio.title |html %] +

[% biblio.title | html %] [% IF ( biblio.author ) %] by [% biblio.author %],[% END %]

[% IF ( biblio.isbn ) %] [% biblio.isbn %][% END %] [% IF ( biblio.pages ) %] - [% biblio.pages %][% END %] -- 2.20.1