admin: 平台订单列表行级同步订阅按钮命中治理阻断时禁用并提示
This commit is contained in:
@@ -1829,15 +1829,33 @@
|
||||
<button class="btn btn-secondary btn-sm" type="submit" @disabled(! $canMarkActivatedOnly)>仅标记为已生效</button>
|
||||
</form>
|
||||
|
||||
@php
|
||||
$syncBlockedByGovernanceRow = (bool) ($order->isReconcileMismatch() || $order->isRefundInconsistent());
|
||||
$syncBlockedByMissingSubscriptionOnRenewalRow = ((string) ($order->order_type ?? '') === 'renewal')
|
||||
&& ((int) ($order->site_subscription_id ?? 0) <= 0);
|
||||
|
||||
// 最短治理路径:续费缺订阅直接落到“关联订阅”面板。
|
||||
$relationFixUrlCompact = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'relation-subscription');
|
||||
|
||||
$syncBlockedRow = $syncBlockedByGovernanceRow || $syncBlockedByMissingSubscriptionOnRenewalRow;
|
||||
@endphp
|
||||
<form method="post" action="/admin/platform-orders/{{ $order->id }}/activate-subscription" data-action="disable-on-submit" onsubmit="return confirm('确认同步订阅?将根据该订单创建/续期订阅');">
|
||||
@csrf
|
||||
<button class="btn btn-secondary btn-sm" type="submit" @disabled(! $canActivate || $alreadySynced)>{{ $alreadySynced ? '已同步' : '同步订阅' }}</button>
|
||||
<button class="btn btn-secondary btn-sm" type="submit" @disabled(! $canActivate || $alreadySynced || $syncBlockedRow)>{{ $alreadySynced ? '已同步' : '同步订阅' }}</button>
|
||||
</form>
|
||||
|
||||
@if(! $canActivate)
|
||||
<div class="muted mt-6">需已支付且订单状态为已生效</div>
|
||||
@elseif($alreadySynced)
|
||||
<div class="muted mt-6">该订单已完成同步(幂等保护)</div>
|
||||
@elseif($syncBlockedRow)
|
||||
<div class="muted text-danger mt-6">
|
||||
需先完成治理后再同步
|
||||
@if($syncBlockedByMissingSubscriptionOnRenewalRow)
|
||||
<span class="muted">|</span>
|
||||
<a class="link" href="{!! $relationFixUrlCompact !!}">去关联订阅</a>
|
||||
@endif
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if($syncError)
|
||||
|
||||
Reference in New Issue
Block a user