From 461d17b2701ad83eaab9c43b2b2d62d9cd479d2e Mon Sep 17 00:00:00 2001 From: Emily Lamancusa Date: Fri, 15 Sep 2023 16:39:42 -0400 Subject: [PATCH] Bug 34752: (QA follow-up) perltidy Signed-off-by: emlam Signed-off-by: Tomas Cohen Arazi --- acqui/basket.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/acqui/basket.pl b/acqui/basket.pl index a96544b0c5..33253aad47 100755 --- a/acqui/basket.pl +++ b/acqui/basket.pl @@ -448,10 +448,10 @@ sub get_order_infos { my %line = %{ $order }; # Don't show unreceived standing orders as received $line{order_received} = ( $qty == $order->{'quantityreceived'} && ( $basket->{is_standing} ? $qty : 1 ) ); - $line{basketno} = $basketno; - $line{budget_name} = $budget->{budget_name}; - $line{sort1_authcat} = $budget->{sort1_authcat}; - $line{sort2_authcat} = $budget->{sort2_authcat}; + $line{basketno} = $basketno; + $line{budget_name} = $budget->{budget_name}; + $line{sort1_authcat} = $budget->{sort1_authcat}; + $line{sort2_authcat} = $budget->{sort2_authcat}; # If we have an actual cost that should be the total, otherwise use the ecost $line{unitprice_tax_included} += 0; -- 2.39.5