Dashboard: fix recent mini bars counts by not casting collection to array

This commit is contained in:
萝卜
2026-03-18 08:37:08 +08:00
parent b9f49d21ee
commit 6d55850ac8

View File

@@ -829,8 +829,10 @@
@php
// 最近平台订单:概览 mini chart渐进增强
// 目标:让“最近订单列表”也纳入数据图形化体系,但不牺牲明细扫描行。
$recentPos = (array) ($recentPlatformOrders ?? []);
$recentTotal = count($recentPos);
// 注意:$recentPlatformOrders 是 Eloquent Collection可直接 foreach不要强转 (array)
// 否则会变成对象属性数组,导致统计口径全部变 0。
$recentPos = $recentPlatformOrders ?? [];
$recentTotal = is_countable($recentPos) ? count($recentPos) : 0;
$recentCntBmpaSuccess = 0;
$recentCntBmpaFailed = 0;