From ec5c0cd54b6af3f556c310e28d83d372b2c8cfac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Wed, 11 Mar 2026 07:40:11 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E8=AE=A2=E5=8D=95=E5=88=97?= =?UTF-8?q?=E8=A1=A8=EF=BC=9A=E5=AF=B9=E8=B4=A6=E4=B8=8D=E4=B8=80=E8=87=B4?= =?UTF-8?q?=E8=A1=8C=E6=8F=90=E7=A4=BA=E5=A2=9E=E5=8A=A0=E5=8E=BB=E8=A1=A5?= =?UTF-8?q?=E5=9B=9E=E6=89=A7=E7=9B=B4=E8=BE=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/platform_orders/index.blade.php | 7 ++++++- .../AdminPlatformOrderReconcileMismatchRowHintTest.php | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 44bdb66..182d5fb 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -604,8 +604,13 @@ $reconcileShowUrl = '/admin/platform-orders/' . $order->id . '#payment-receipts'; @endphp @if($isReconcileMismatchRow) + @php $reconcileFixUrl = '/admin/platform-orders/' . $order->id . '#add-payment-receipt'; @endphp ¥{{ number_format($rowDelta, 2) }} -
对账不一致
+
+ 对账不一致 + + 去补回执 +
@else ¥0.00 @endif diff --git a/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php b/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php index b6f0ef0..8c81400 100644 --- a/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php +++ b/tests/Feature/AdminPlatformOrderReconcileMismatchRowHintTest.php @@ -66,6 +66,7 @@ class AdminPlatformOrderReconcileMismatchRowHintTest extends TestCase ->assertOk() ->assertSee('PO_RECON_ROW_HINT_0001') ->assertSee('/admin/platform-orders/' . $order->id . '#payment-receipts', false) + ->assertSee('/admin/platform-orders/' . $order->id . '#add-payment-receipt', false) ->assertSee('对账不一致'); } }