From 52b984f3830e854579dcb3ae3849c27ddb81310f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 7 Apr 2021 16:07:09 +0200 Subject: [PATCH] Bug 15348: trivial code simplification --- acqui/lateorders-export.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/lateorders-export.pl b/acqui/lateorders-export.pl index f86f7249398..207c879e31a 100755 --- a/acqui/lateorders-export.pl +++ b/acqui/lateorders-export.pl @@ -44,7 +44,7 @@ unless ( $csv_profile_id ) { push @orders, { orderdate => $order->{orderdate}, latesince => $order->{latesince}, - estimateddeliverydate => $order->{estimated_delivery_date} ? $order->{estimated_delivery_date} : $order->{calculateddeliverydate}, + estimateddeliverydate => $order->{estimated_delivery_date} || $order->{calculateddeliverydate}, supplier => $order->{supplier}, supplierid => $order->{supplierid}, title => $order->{title}, -- 2.11.0