From 3bec704caa502c9cb26ae4a8c54a7564c8a7a4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Fri, 13 Mar 2026 20:27:23 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=EF=BC=9A=E4=B8=8D=E4=B8=80=E8=87=B4=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E6=8A=BD=E5=8F=96=E4=B8=BA=E5=85=AC=E5=85=B1?= =?UTF-8?q?=E5=8F=98=E9=87=8F=E5=87=8F=E5=B0=91=E9=87=8D=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/platform_orders/show.blade.php | 31 +++++++------------ 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index c7a461c..e6e9394 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -18,6 +18,17 @@ return '/admin/platform-orders?' . \Illuminate\Support\Arr::query($query); }; + + // 常用治理列表链接:统一口径(携带 back 回到当前订单详情自身,且不嵌套 back) + $reconcileMismatchListUrl = '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ + 'reconcile_mismatch' => 1, + 'back' => $orderShowSelf, + ]); + + $refundInconsistentListUrl = '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ + 'refund_inconsistent' => 1, + 'back' => $orderShowSelf, + ]); @endphp

这里用于运营排查:订单核心字段、关联订阅、以及订阅同步元数据(meta)。

@@ -110,13 +121,7 @@
已付:¥{{ number_format($paidAmountFloat, 2) }}|退款总额:¥{{ number_format($refundTotal, 2) }}
操作说明:该区块仅用于修正支付状态展示口径,不会改金额、不生成退款记录;请先核对退款轨迹。
- @php - $refundInconsistentListUrl = '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ - 'refund_inconsistent' => 1, - 'back' => $orderShowSelf, - ]); - @endphp - 查看全部退款不一致订单 + 查看全部退款不一致订单
@if($canMarkRefunded) @@ -332,12 +337,6 @@ 去补一条支付回执 - @php - $reconcileMismatchListUrl = '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ - 'reconcile_mismatch' => 1, - 'back' => $orderShowSelf, - ]); - @endphp 查看全部对账不一致订单
@endif @@ -409,12 +408,6 @@
提示:该订单疑似存在「退款状态 vs 退款总额」不一致(按容差口径),建议核对退款轨迹、已付金额与支付状态。 - @php - $refundInconsistentListUrl = '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ - 'refund_inconsistent' => 1, - 'back' => $orderShowSelf, - ]); - @endphp 查看全部退款不一致订单
@endif