From a6179718ad03863633a31e14bee5ba949698c452 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Sat, 14 Mar 2026 15:33:52 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=EF=BC=9A=E8=BF=94=E5=9B=9E=E5=88=97=E8=A1=A8=E9=93=BE?= =?UTF-8?q?=E6=8E=A5=E4=BF=9D=E7=95=99=E4=B8=8A=E4=B8=8B=E6=96=87=EF=BC=88?= =?UTF-8?q?=E8=A1=A5=E6=B5=8B=E8=AF=95=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/platform_orders/show.blade.php | 2 +- ...formOrderShowIndexLinkKeepsContextTest.php | 72 +++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 tests/Feature/AdminPlatformOrderShowIndexLinkKeepsContextTest.php diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index 4c31503..18935e4 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -787,6 +787,6 @@ @endif - ← 返回平台订单列表 + ← 返回平台订单列表(保留上下文) @endsection diff --git a/tests/Feature/AdminPlatformOrderShowIndexLinkKeepsContextTest.php b/tests/Feature/AdminPlatformOrderShowIndexLinkKeepsContextTest.php new file mode 100644 index 0000000..8d0269b --- /dev/null +++ b/tests/Feature/AdminPlatformOrderShowIndexLinkKeepsContextTest.php @@ -0,0 +1,72 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_show_page_index_link_should_contain_back_to_order_show(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + + $plan = Plan::query()->create([ + 'code' => 'po_show_index_link_back_plan', + 'name' => '平台订单详情返回列表保留上下文测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + $order = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_SHOW_INDEX_LINK_BACK_0001', + 'order_type' => 'new_purchase', + 'status' => 'pending', + 'payment_status' => 'unpaid', + 'plan_name' => $plan->name, + 'billing_cycle' => $plan->billing_cycle, + 'period_months' => 1, + 'quantity' => 1, + 'payable_amount' => 10, + 'paid_amount' => 0, + 'placed_at' => now(), + 'meta' => [], + ]); + + $res = $this->get('/admin/platform-orders/' . $order->id); + $res->assertOk(); + + $back = '/admin/platform-orders/' . $order->id; + + $expectedIndexUrl = '/admin/platform-orders?' . Arr::query([ + 'back' => $back, + ]); + + $res->assertSee('返回平台订单列表(保留上下文)'); + $res->assertSee($expectedIndexUrl, false); + } +}