6
0
Fork 0
release
李静 2021-12-17 10:39:18 +08:00
parent 7574925155
commit f06a0de64a
1 changed files with 1 additions and 1 deletions

View File

@ -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),
]);
}
}