From 5164078f82f05fbc15c300812b36da07a8050f78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 17 Mar 2026 21:21:14 +0800 Subject: [PATCH] =?UTF-8?q?admin:=20=E9=80=80=E6=AC=BE=E4=B8=8D=E4=B8=80?= =?UTF-8?q?=E8=87=B4=E8=A1=8C=E5=86=85=E6=8F=90=E7=A4=BA=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=E7=9B=B4=E8=BE=BE=E8=BF=BD=E5=8A=A0=E9=80=80=E6=AC=BE=E9=9D=A2?= =?UTF-8?q?=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/platform_orders/index.blade.php | 2 +- .../AdminPlatformOrderRefundInconsistentRowHintFixLinkTest.php | 2 +- .../Feature/AdminPlatformOrderRefundInconsistentRowHintTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 0fb54e9..e5fd7b4 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -1752,7 +1752,7 @@ @endphp @if($refundTotal > 0) @if($isRefundInconsistent) - @php $refundFixUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'refund-receipts'); @endphp + @php $refundFixUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $order->id, $selfWithoutBack, 'add-refund-receipt'); @endphp ¥{{ number_format($refundTotal, 2) }}
疑似不一致 diff --git a/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintFixLinkTest.php b/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintFixLinkTest.php index 7b4f8e0..2075183 100644 --- a/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintFixLinkTest.php +++ b/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintFixLinkTest.php @@ -68,7 +68,7 @@ class AdminPlatformOrderRefundInconsistentRowHintFixLinkTest extends TestCase $indexSelfWithoutBack = '/admin/platform-orders?refund_inconsistent=1'; - $res->assertSee('/admin/platform-orders/' . $order->id . '?back=' . urlencode($indexSelfWithoutBack) . '#refund-receipts', false); + $res->assertSee('/admin/platform-orders/' . $order->id . '?back=' . urlencode($indexSelfWithoutBack) . '#add-refund-receipt', false); $res->assertSee('去核对退款'); } } diff --git a/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintTest.php b/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintTest.php index 17e5095..3941838 100644 --- a/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintTest.php +++ b/tests/Feature/AdminPlatformOrderRefundInconsistentRowHintTest.php @@ -66,6 +66,6 @@ class AdminPlatformOrderRefundInconsistentRowHintTest extends TestCase ->assertOk() ->assertSee('PO_ROW_REFUND_INCONS_0001') ->assertSee('疑似不一致') - ->assertSee('#refund-receipts'); + ->assertSee('#add-refund-receipt'); } }