From 322932a050acc1e1fcf6afdd4ad7c4e0907fae12 Mon Sep 17 00:00:00 2001 From: jeremy breuillard Date: Thu, 16 Dec 2021 17:59:03 +0100 Subject: [PATCH] Bug 6734: Show location in serials history table Opac: On a record(Serials) details the location wasn't displayed on the "Normal view" and "Full history" tabs Test plan: 1)Intranet: Make sure to have at least two different Serials/Subscriptions on the same record with the field 'location' filled in 2)Opac: Find your Serials/Subscriptions 3)Click 'More details' and notice the 3 tabs : Normal view, Brief history, Full history 4)Go to 'Normal view' and 'Full history' to notice that 'location' is missing 5)Apply patch, refresh your browser & repeat 4) 6)The location is now visible Signed-off-by: Chris Cormack --- C4/Serials.pm | 3 ++- .../opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt | 3 +++ .../opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/C4/Serials.pm b/C4/Serials.pm index d840bf24b72..acc387f4f79 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -471,7 +471,8 @@ sub GetFullSubscriptionsFromBiblionumber { year(IF(serial.publisheddate IS NULL,serial.planneddate,serial.publisheddate)) as year, biblio.title as bibliotitle, subscription.branchcode AS branchcode, - subscription.subscriptionid AS subscriptionid + subscription.subscriptionid AS subscriptionid, + subscription.location AS location FROM serial LEFT JOIN subscription ON (serial.subscriptionid=subscription.subscriptionid) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt index deecd07834e..31a6cf80cd4 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-full-serial-issues.tt @@ -4,6 +4,7 @@ [% USE AdditionalContents %] [% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode, blocktitle => 0 ) %] [% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode, blocktitle => 0 ) %] +[% USE AuthorisedValues %] [% INCLUDE 'doc-head-open.inc' %] Full subscription history for [% bibliotitle | html %] › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog [% INCLUDE 'doc-head-close.inc' %] @@ -129,6 +130,7 @@ Date Library + Location Notes Date received Number @@ -151,6 +153,7 @@ [% END %] [% Branches.GetName( serial.branchcode ) | html %] + [% AuthorisedValues.GetByCode( 'LOC', serial.location, 1 ) | html %] [% serial.notes | html %] [% IF ( serial.status2 && serial.planneddate ) %] diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt index fcd8a68ad6c..3e1c02c9687 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt +++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-serial-issues.tt @@ -1,5 +1,6 @@ [% USE Koha %] [% USE AdditionalContents %] +[% USE AuthorisedValues %] [% SET OpacNav = AdditionalContents.get( location => "OpacNav", lang => lang, library => logged_in_user.branchcode, blocktitle => 0 ) %] [% SET OpacNavBottom = AdditionalContents.get( location => "OpacNavBottom", lang => lang, library => logged_in_user.branchcode, blocktitle => 0 ) %] [% INCLUDE 'doc-head-open.inc' %] @@ -131,6 +132,9 @@ [% END %]

[% subscription_LOO.branchname | html %]

+ [% IF ( subscription_LOO.location ) %] +

Location : [% AuthorisedValues.GetByCode( 'LOC', subscription_LOO.location, 1 ) | html | html_line_break %]

+ [% END %] [% IF ( subscription_LOO.notes ) %]

[% subscription_LOO.notes | html | html_line_break %]

-- 2.17.1