From f06a0de64ad0d0d52da3e39fc8a61708546b1e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=9D=99?= Date: Fri, 17 Dec 2021 10:39:18 +0800 Subject: [PATCH] WIP --- .../Api/Http/Controllers/Order/StatisticsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Endpoint/Api/Http/Controllers/Order/StatisticsController.php b/app/Endpoint/Api/Http/Controllers/Order/StatisticsController.php index fd363abd..5ba8c34f 100644 --- a/app/Endpoint/Api/Http/Controllers/Order/StatisticsController.php +++ b/app/Endpoint/Api/Http/Controllers/Order/StatisticsController.php @@ -27,7 +27,7 @@ class StatisticsController extends Controller // 待付款订单数 'pending_orders_count' => $statistics->get(Order::STATUS_PENDING, 0), // 待收货订单数 - 'unreceived_orders_count' => $statistics->get(Order::STATUS_PAID, 0) + $statistics->get(Order::STATUS_SHIPPED, 0), + 'unreceived_orders_count' => $statistics->get(Order::STATUS_PAID, 0), ]); } }