From c3e42a273b99ea288a2734e3905281892d090ca7 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
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.20.1