From f19f9a38ebacec623572b5f166b2a89d66613feb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Wed, 18 Mar 2026 19:33:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84:=20=E6=94=B6=E5=8F=A3?= =?UTF-8?q?=E6=B2=BB=E7=90=86=E6=91=98=E8=A6=81=E5=8D=95=E5=80=BC=E9=93=BE?= =?UTF-8?q?=E6=8E=A5=E7=BB=84=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/admin/platform_orders/index.blade.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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 且退款总额 >= 已付 + 容差