feat(admin-dashboard): show reconcile mismatch hint in recent orders

This commit is contained in:
萝卜
2026-03-16 14:01:07 +08:00
parent e809022b4a
commit 66e71614e5
2 changed files with 81 additions and 0 deletions

View File

@@ -348,6 +348,16 @@
<a class="link" href="{!! $bmpaFailedListUrl !!}">进入集合</a>
</div>
@endif
@if((string) $po->status === 'pending' && (string) $po->payment_status === 'paid' && $po->isReconcileMismatch())
@php
$reconcileMismatchUrl = \App\Support\BackUrl::withBack('/admin/platform-orders?reconcile_mismatch=1', $selfWithoutBack);
@endphp
<div class="muted text-danger muted-xs row-warn" data-role="recent-order-reconcile-mismatch-hint">
<span class="row-warn-prefix">对账不一致</span>
<span class="muted"></span>
<a class="link" href="{!! $reconcileMismatchUrl !!}">进入集合</a>
</div>
@endif
</td>
</tr>
@empty