From 12976198955c83c85eeadf38e3f9f4fb7520e96a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 00:11:34 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=B7=B2=E4=BB=98=E6=97=A0=E5=9B=9E=E6=89=A7=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E6=B5=8B=E8=AF=95=E5=8F=A3=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...erIndexCompactViewPaidButNoReceiptShowsFixLinkTest.php | 8 ++++---- tests/Feature/AdminPlatformOrderIndexRowWarnClassTest.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Feature/AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest.php b/tests/Feature/AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest.php index f1cd17b..bdd7b41 100644 --- a/tests/Feature/AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest.php +++ b/tests/Feature/AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest.php @@ -31,7 +31,7 @@ class AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest extends $plan = Plan::query()->create([ 'code' => 'compact_view_no_receipt_fix_link_test', - 'name' => '精简视图无回执修复入口测试套餐', + 'name' => '精简视图已付无回执修复入口测试套餐', 'billing_cycle' => 'monthly', 'price' => 10, 'list_price' => 10, @@ -71,13 +71,13 @@ class AdminPlatformOrderIndexCompactViewPaidButNoReceiptShowsFixLinkTest extends 'back' => $indexSelfWithoutBack, ]) . '#add-payment-receipt'; - $res->assertSee('无回执', false); + $res->assertSee('已付无回执', false); $res->assertSee($fixUrl, false); $res->assertSee('去补回执', false); - // full 视图:仍应保留该提示(因为“无回执”不属于对账差额/退款总额等可选列的内容) + // full 视图:仍应保留该提示(因为“已付无回执”不属于对账差额/退款总额等可选列的内容) $this->get('/admin/platform-orders?status=activated&view=full') ->assertOk() - ->assertSee('无回执', false); + ->assertSee('已付无回执', false); } } diff --git a/tests/Feature/AdminPlatformOrderIndexRowWarnClassTest.php b/tests/Feature/AdminPlatformOrderIndexRowWarnClassTest.php index 81e2b3c..300912d 100644 --- a/tests/Feature/AdminPlatformOrderIndexRowWarnClassTest.php +++ b/tests/Feature/AdminPlatformOrderIndexRowWarnClassTest.php @@ -76,6 +76,6 @@ class AdminPlatformOrderIndexRowWarnClassTest extends TestCase $res->assertSee('SIM_SYNC_ERR', false); $res->assertSee('BMPA', false); $res->assertSee('SIM_BMPA_ERR', false); - $res->assertSee('无回执', false); + $res->assertSee('已付无回执', false); } }