diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index b06aabe..b045560 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -873,7 +873,11 @@
¥{{ number_format($delta, 2) }}
{{ $summaryStats['reconciliation_delta_note'] ?? '回执总额 - 订单已付总额' }}(当前筛选范围)
对账不一致订单:
-
{{ $summaryStats['reconcile_mismatch_orders'] ?? 0 }}
+ @include('admin.platform_orders._summary_metric_link', [
+ 'role' => 'po-summary-link-reconcile-mismatch-orders',
+ 'href' => $safeFullUrlWithQuery(['reconcile_mismatch' => '1', 'page' => null]),
+ 'label' => $summaryStats['reconcile_mismatch_orders'] ?? 0,
+ ])
@php $tol = (float) config('saasshop.amounts.tolerance', 0.01); @endphp
当前容差:¥{{ number_format($tol, 2) }}
@@ -884,7 +888,11 @@
退款不一致订单
-
{{ $summaryStats['refund_inconsistent_orders'] ?? 0 }}
+ @include('admin.platform_orders._summary_metric_link', [
+ 'role' => 'po-summary-link-refund-inconsistent-orders',
+ 'href' => $safeFullUrlWithQuery(['refund_inconsistent' => '1', 'page' => null]),
+ 'label' => $summaryStats['refund_inconsistent_orders'] ?? 0,
+ ])
@php $refundTol = (float) config('saasshop.amounts.tolerance', 0.01); @endphp
口径:状态=refunded 但退款总额 + 容差 < 已付;或状态!=refunded 且退款总额 >= 已付 + 容差