From da2c777737c0633352a288f96c258ba7914d29a6 Mon Sep 17 00:00:00 2001 From: Kyle Hall Date: Wed, 22 Feb 2023 10:55:41 -0500 Subject: [PATCH] Bug 33040: Add "Date published (text)" to serials tab on record view (detail.pl) Some libraries would like to see the "Date published (text)" in the serials tab on the "Normal" record view ( aka catalogue/detail.pl ). Test Plan: 1) View the serials tab on detail.pl for a subscription where the latest serial has a "Date published (text)" field populated. 2) Apply this patch 3) Restart all the thigns! 4) Browse to detail.pl for that record 5) View the Subscriptions tab 6) Note the "Date published (text)" column exists now! Signed-off-by: Matt Blenkinsop Signed-off-by: Victor Grousset/tuxayo Signed-off-by: Tomas Cohen Arazi (cherry picked from commit b3b33960dac85015d4f6e73604a8f7d21ed31e5b) Signed-off-by: Jacob O'Mara (cherry picked from commit e640ddc20e6dd44a679f6e738943bdfb69fc4dab) Signed-off-by: Lucas Gass --- C4/Serials.pm | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/C4/Serials.pm b/C4/Serials.pm index 1da5058801..9f6ba2ddae 100644 --- a/C4/Serials.pm +++ b/C4/Serials.pm @@ -781,7 +781,7 @@ sub GetLatestSerials { my $dbh = C4::Context->dbh; my $statuses = join( ',', ( ARRIVED, MISSING_STATUSES ) ); - my $strsth = "SELECT serialid,serialseq, status, planneddate, publisheddate, notes + my $strsth = "SELECT serialid,serialseq, status, planneddate, publisheddate, publisheddatetext, notes FROM serial WHERE subscriptionid = ? AND status IN ($statuses) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt index b19d8dc599..5d41fc91ec 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -736,6 +736,7 @@ Note that permanent location is a code, and location may be an authval. Issue # Date arrived Date published + Date published (text) Status Note @@ -744,6 +745,7 @@ Note that permanent location is a code, and location may be an authval. [% latestserial.serialseq | html %] [% latestserial.planneddate | $KohaDates %] [% latestserial.publisheddate | $KohaDates %] + [% latestserial.publisheddatetext | html %] [% IF ( latestserial.status1 ) %]Expected[% END %] [% IF ( latestserial.status2 ) %]Arrived[% END %] -- 2.39.2