feat: subscription show reconcile mismatch hint with link
This commit is contained in:
@@ -223,7 +223,13 @@
|
||||
对账不一致订单:
|
||||
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'reconcile_mismatch' => '1']) !!}">{{ $summaryStats['reconcile_mismatch_orders'] ?? 0 }}</a>
|
||||
</div>
|
||||
@if(abs($delta) >= 0.01)
|
||||
@if(((int) ($summaryStats['reconcile_mismatch_orders'] ?? 0)) > 0)
|
||||
<div class="muted muted-xs text-danger">
|
||||
提示:存在「回执总额 vs 已付金额」不一致订单。
|
||||
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'reconcile_mismatch' => '1']) !!}">进入对账不一致订单列表</a>
|
||||
(建议先逐单核对回执轨迹与订单金额,再决定是否补回执/修正订单金额口径)。
|
||||
</div>
|
||||
@elseif(abs($delta) >= 0.01)
|
||||
<div class="muted muted-xs text-danger">提示:差额非 0,可能存在回执金额与订单已付金额不一致。</div>
|
||||
@else
|
||||
<div class="muted muted-xs">差额为 0(当前订阅维度)</div>
|
||||
|
||||
Reference in New Issue
Block a user