From 10c2b07ba702760897c1e1c1c92f9f0d1c538e49 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Sat, 4 Jan 2020 21:53:45 +0000 Subject: [PATCH] Bug 24343: Show subtitle, number and parts in course reserves list of titles in staff client Adapted from Bug 23784: At the moment only the title will display in the course reserves details, but not the information from other title fields. For series with multiple volumes that can lead to confusing display. The patch makes use of the new include to display 245$abnp. To test: - Add mulitple records to a course reserve course Make sure you have titles with different combinations of 245$b$n$p - Look at the course details in the staff client - Verify only $a displays - Apply patch - Reload - Verify now the full information displays Depending on your installation, you might want ot check that the 245 are correctly mapped and save the record once so the database fields are correctly filled. --- .../intranet-tmpl/prog/en/modules/course_reserves/course-details.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt index 5b45fc9b5f..ab08e01654 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/course_reserves/course-details.tt @@ -95,7 +95,7 @@ [% FOREACH cr IN course_reserves %] - [% cr.biblio.title | html %] + [% INCLUDE 'biblio-title.inc' biblio=cr.biblio %] [% cr.biblio.author | html %] [% cr.item.barcode | html %] [% cr.item.itemcallnumber | html %] -- 2.11.0