From e809ddc826efa0e20b3fec934281b89e47d3c15a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Wed, 11 Mar 2026 01:32:59 +0000 Subject: [PATCH] =?UTF-8?q?feat(admin):=20=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=A4=B1=E8=B4=A5=E5=8E=9F=E5=9B=A0TOP5=E5=8F=AF?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E8=B7=B3=E8=BD=AC=E5=88=B0=E5=90=8C=E5=8E=9F?= =?UTF-8?q?=E5=9B=A0=E5=A4=B1=E8=B4=A5=E8=AE=A2=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/platform_orders/index.blade.php | 6 +- ...inPlatformOrderFailedReasonTopLinkTest.php | 73 +++++++++++++++++++ 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 tests/Feature/AdminPlatformOrderFailedReasonTopLinkTest.php diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index a1f5e9c..16ce735 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -213,7 +213,11 @@ @if(count($failedReasonStats) > 0)
@foreach($failedReasonStats as $item) -
{{ $item['reason'] }} ({{ $item['count'] }})
+ @php $reason = (string) ($item['reason'] ?? ''); @endphp +
+ {{ $reason }} + ({{ $item['count'] }}) +
@endforeach
@else diff --git a/tests/Feature/AdminPlatformOrderFailedReasonTopLinkTest.php b/tests/Feature/AdminPlatformOrderFailedReasonTopLinkTest.php new file mode 100644 index 0000000..ee4f304 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderFailedReasonTopLinkTest.php @@ -0,0 +1,73 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_failed_reason_top5_reason_is_clickable_and_sets_sync_error_keyword_and_failed_status(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'failed_reason_link_test', + 'name' => '失败原因链接测试', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_FAIL_REASON_0001', + 'order_type' => 'renewal', + '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()->subMinutes(2), + 'meta' => [ + 'subscription_activation_error' => [ + 'message' => '模拟失败:站点已过期', + 'at' => now()->toDateTimeString(), + 'admin_id' => 1, + ], + ], + ]); + + $this->get('/admin/platform-orders') + ->assertOk() + ->assertSee('同步失败原因 TOP5') + ->assertSee('模拟失败:站点已过期') + ->assertSee( + '/admin/platform-orders?sync_error_keyword=' . urlencode('模拟失败:站点已过期') . '&sync_status=failed', + false + ); + } +}