From 29739088d4c172a438acc06d75a26141cfd26c81 Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 3 Feb 2017 13:57:02 +0200 Subject: [PATCH] -Statistics export fix --- controllers/StatisticsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/StatisticsController.php b/controllers/StatisticsController.php index 5ea8159..760e9c4 100755 --- a/controllers/StatisticsController.php +++ b/controllers/StatisticsController.php @@ -236,7 +236,7 @@ /** * @var Order $order */ - $line[] = $formatter->asDecimal($order->id); + $line[] = (string) $order->id; $line[] = $formatter->asDatetime($order->created_at); $line[] = (string) $order->name; if (empty($order->products)) { -- libgit2 0.21.4