From a93bfe2b838ef33698eeac06b4685d91cfd412cc Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 5 Jan 2019 17:39:42 +0000 Subject: [PATCH] Bug 22121: Display 'Price paid' on ILL requests according to CurrencyFormat pref To test: - Install BLDSS backend see: https://wiki.koha-community.org/wiki/ILL_backends - Add a new BLDSS ILL request - Edit ILL request - Fill in Price paid field - Verify Price paid is formatted correctly on 'Manage ILL request' page Signed-off-by: Ethan Amohia Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt index 39f09ee36b..6f0705fbb7 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/ill/ill-requests.tt @@ -6,6 +6,7 @@ [% SET footerjs = 1 %] [% USE AuthorisedValues %] [% USE ColumnsSettings %] +[% USE Price %] [% INCLUDE 'doc-head-open.inc' %] Koha › ILL requests @@ -383,7 +384,7 @@
  • Price paid: - [% IF request.price_paid %][% request.price_paid | html %][% ELSE %]N/A[% END %] + [% IF request.price_paid %][% request.price_paid | $Price %][% ELSE %]N/A[% END %]
  • Request number: -- 2.17.1