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); + } +}