From 4f37292fb0703fa040eeb28248acc27f5b140f2e Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 21 Sep 2018 11:42:28 +0100 Subject: [PATCH] Bug 21387: Receive items from - form should include tax hints --- acqui/orderreceive.pl | 4 ++++ .../intranet-tmpl/prog/en/modules/acqui/orderreceive.tt | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/acqui/orderreceive.pl b/acqui/orderreceive.pl index 91c6e35d67..042c760043 100755 --- a/acqui/orderreceive.pl +++ b/acqui/orderreceive.pl @@ -73,6 +73,7 @@ use C4::Suggestions; use C4::Koha; use Koha::Acquisition::Booksellers; +use Koha::Acquisition::Currencies; use Koha::Acquisition::Orders; use Koha::DateUtils qw( dt_from_string ); use Koha::ItemTypes; @@ -112,6 +113,7 @@ unless ( $results and @$results) { # prepare the form for receiving my $order = $results->[0]; my $basket = Koha::Acquisition::Orders->find( $ordernumber )->basket; +my $active_currency = Koha::Acquisition::Currencies->get_active; # Check if ACQ framework exists my $acq_fw = GetMarcStructure( 1, 'ACQ', { unsafe => 1 } ); @@ -203,6 +205,8 @@ $template->param( booksellerid => $order->{'booksellerid'}, freight => $freight, name => $bookseller->name, + cur_active_sym => $active_currency->symbol, + cur_active => $active_currency->currency, title => $order->{'title'}, author => $order->{'author'}, copyrightdate => $order->{'copyrightdate'}, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt index 39ee661680..2bc2299ed3 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/orderreceive.tt @@ -239,15 +239,15 @@ [% END %] -
  • [% rrp | $Price %]
  • +
  • [% rrp | $Price %] (adjusted for [% cur_active | html %], [% IF (listincgst == 1) %]tax inc.[% ELSE %]tax exc.[% END %])
  • -
  • [% ecost | $Price %]
  • +
  • [% ecost | $Price %] [% IF (listincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
  • - + [% IF (invoiceincgst == 1) %](tax inc.)[% ELSE %](tax exc.)[% END %]
  • [% IF order_vendornote %] -- 2.19.1