@@ -, +, @@ --- catalogue/detail.pl | 3 ++- .../prog/en/modules/catalogue/detail.tt | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) --- a/catalogue/detail.pl +++ a/catalogue/detail.pl @@ -293,7 +293,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, ); } --- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt @@ -38,6 +38,17 @@ [% INCLUDE 'doc-head-close.inc' %] +[% BLOCK acq_status %] + + [% SWITCH myvar %] + [% CASE 'unlinked' %]Unlinked + [% CASE 'acquired' %]Acquired + [% CASE 'processing' %]Processing + [% CASE 'cancelled' %]Cancelled + [% END %] + +[% END %] + [% WRAPPER 'header.inc' %] @@ -470,6 +481,8 @@ [% IF Koha.Preference('AcquisitionDetails') %]
+

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

[% IF orders.count %] --