admin: 列表行级BMPA对齐退款轨迹安全阀(存在退款即禁用并给入口)

This commit is contained in:
萝卜
2026-03-18 00:36:23 +08:00
parent 6a3b2f495e
commit 615a41e382
2 changed files with 94 additions and 2 deletions

View File

@@ -1782,12 +1782,15 @@
@php
$needReconcileFix = (bool) $order->isReconcileMismatch();
$needRefundFix = (bool) $order->isRefundInconsistent();
// 退款轨迹:只要存在退款汇总/退款回执,就视为“需核对”的治理信号(用于禁用部分动作并给入口)
$hasRefundTrace = ((float) $order->refundTotal()) > 0;
// 行级 BMPA 安全阀(列表页也应禁用,避免运营误触):
// - 对账不一致/退款不一致:需先治理
// - 存在退款轨迹:需先核对退款轨迹与状态(避免带退款订单被推进)
// - 续费缺订阅:需先绑定订阅
$blockedByMissingSubscriptionOnRenewal = ((string) ($order->order_type ?? '') === 'renewal') && ((int) ($order->site_subscription_id ?? 0) <= 0);
$markPaidBlockedByGovernance = $needReconcileFix || $needRefundFix || $blockedByMissingSubscriptionOnRenewal;
$markPaidBlockedByGovernance = $needReconcileFix || $needRefundFix || $hasRefundTrace || $blockedByMissingSubscriptionOnRenewal;
// 仅当订单尚未处于 paid+activated 时,且未命中治理阻断时,才允许点击
$canMarkPaid = ((($order->payment_status !== 'paid') || ($order->status !== 'activated')) && (! $markPaidBlockedByGovernance));
@@ -1796,9 +1799,10 @@
$reconcileFixUrlCompact = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'add-payment-receipt');
$refundFixUrlCompact = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'add-refund-receipt');
$relationFixUrlCompactForBmpa = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'relation-subscription');
$refundTraceFixUrlCompact = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'add-refund-receipt');
@endphp
@if($needReconcileFix || $needRefundFix || $blockedByMissingSubscriptionOnRenewal)
@if($needReconcileFix || $needRefundFix || $hasRefundTrace || $blockedByMissingSubscriptionOnRenewal)
<div class="governance-hints row-warn">
@if($needReconcileFix)
<div class="muted text-danger muted-xs governance-hint">
@@ -1814,6 +1818,13 @@
<a class="link" href="{!! $refundFixUrlCompact !!}">去核对退款</a>
</div>
@endif
@if($hasRefundTrace && (! $needRefundFix))
<div class="muted text-danger muted-xs governance-hint">
<span class="row-warn-prefix">退款</span>
<span class="muted"></span>
<a class="link" href="{!! $refundTraceFixUrlCompact !!}">有退款轨迹,请核对</a>
</div>
@endif
@if($blockedByMissingSubscriptionOnRenewal)
<div class="muted text-danger muted-xs governance-hint">
<span class="row-warn-prefix">订阅</span>