From b40d481ba6c21b5c6de466d1fb080ae330f1f0a7 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=UTF-8 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 --- 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 baf70cf..21b428c 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.1.4