From 07d97e420e5f5790fba191d4cecded206d1c7f3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Thu, 17 Mar 2016 16:02:02 +0100 Subject: [PATCH] Bug 16089: Acquisitions -> Invoice broken by Bug 15084 To test: - Reproduce error described in first comment. - Apply patch - Try to reproduce error. Page will display as expected. --- acqui/invoice.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/invoice.pl b/acqui/invoice.pl index 267d4fc..3eb5228 100755 --- a/acqui/invoice.pl +++ b/acqui/invoice.pl @@ -178,7 +178,7 @@ $template->param( total_gste_shipment => sprintf( $format, $total_gste + $details->{shipmentcost}), total_gsti_shipment => sprintf( $format, $total_gsti + $details->{shipmentcost}), invoiceincgst => $bookseller->{invoiceincgst}, - currency => Koha::Acquisition::Currency->get_active->currency, + currency => Koha::Acquisition::Currencies->get_active, budgets_loop => \@budgets_loop, ); -- 1.7.10.4