From 3a5c97f2d37370e1e7c6a9545c16d76110833470 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 66e3eb94cb..1c03e68ae5 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