From 0cb968305cfda634d82d421b461b9fb8a90571dd Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 22 Feb 2024 13:52:41 +0000 Subject: [PATCH] Bug 35994: Show acq_status on catalogue/detail Content-Type: text/plain; charset=utf-8 Test plan: Based on the described criteria, check a few biblio records. Look at Acquisitions tab on the intranet detail page. Signed-off-by: Marcel de Rooy --- catalogue/detail.pl | 3 ++- .../prog/en/modules/catalogue/detail.tt | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/catalogue/detail.pl b/catalogue/detail.pl index 9edaf3f3bb..c8f0eb95c7 100755 --- a/catalogue/detail.pl +++ b/catalogue/detail.pl @@ -299,7 +299,8 @@ if ( C4::Context->preference('AcquisitionDetails') ) { ); # GetHistory sorted by aqbooksellerid, but does it make sense? $template->param( - orders => $orders, + orders => $orders, + acq_status => $biblio->acq_status, ); } 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 9764f45735..d751459409 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -49,6 +49,17 @@ [% Asset.css("lib/Chocolat/css/chocolat.css") | $raw %] +[% BLOCK acq_status %] + + [% SWITCH myvar %] + [% CASE 'unlinked' %]Unlinked + [% CASE 'acquired' %]Acquired + [% CASE 'processing' %]Processing + [% CASE 'cancelled' %]Cancelled + [% END %] + +[% END %] + [% WRAPPER 'header.inc' %] @@ -826,6 +837,8 @@ [% IF Koha.Preference('AcquisitionDetails') %]
+

This bibliographic record has acquisition status: [% PROCESS acq_status myvar=acq_status %] +

[% IF orders.count %] -- 2.30.2