From 510c29b1c618fa37e63ebaed065adddb044359e8 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 28 Nov 2012 10:02:35 -0500 Subject: [PATCH] Bug 7129 [3.8.x] actual cost showing too many zeros Reimplemented for 3.8.x: Added a sprintf to format the actual cost Signed-off-by: Chris Cormack Simple bug fix, TT plugin would be nicer but this is a perfectly acceptable fix for now --- acqui/orderreceive.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acqui/orderreceive.pl b/acqui/orderreceive.pl index 2b59698a71..7203d2d613 100755 --- a/acqui/orderreceive.pl +++ b/acqui/orderreceive.pl @@ -162,8 +162,8 @@ if ( $count == 1 ) { quantityreceivedplus1 => @$results[0]->{'quantityreceived'} + 1, quantityreceived => @$results[0]->{'quantityreceived'}, rrp => @$results[0]->{'rrp'}, - ecost => @$results[0]->{'ecost'}, - unitprice => @$results[0]->{'unitprice'}, + ecost => sprintf( "%.2f",$order->{'ecost'}), + unitprice => sprintf( "%.2f",$order->{'unitprice'}), memberfirstname => $member->{firstname} || "", membersurname => $member->{surname} || "", invoice => $invoice, -- 2.39.5