From f837c16bf5cadf1f14901c67711316db0c8bb3d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 17 Mar 2026 13:01:02 +0800 Subject: [PATCH] ui(platform-orders): render batch activation last_result summary --- .../admin/platform_orders/index.blade.php | 14 ++++ ...chActivationLastResultShouldRenderTest.php | 84 +++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderIndexBatchActivationLastResultShouldRenderTest.php diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index 4914e24..cf30a47 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -1398,9 +1398,23 @@ $batchScope = (string) (data_get($batchActivation, 'scope') ?? ''); $batchScopeText = $batchScope === 'all' ? '全量' : ($batchScope === 'filtered' ? '筛选' : ($batchScope !== '' ? $batchScope : '-')); @endphp + @php + $lastResult = (array) (data_get($batchActivation, 'last_result', []) ?? []); + $lrRunId = (string) (data_get($lastResult, 'run_id') ?? ''); + $lrSuccess = (int) (data_get($lastResult, 'success') ?? 0); + $lrFailed = (int) (data_get($lastResult, 'failed') ?? 0); + $lrTopReason = (string) (data_get($lastResult, 'top_reasons.0.reason') ?? ''); + $lrTopReasonCount = (int) (data_get($lastResult, 'top_reasons.0.count') ?? 0); + @endphp
{{ $batchAt }}
管理员:{{ $batchAdminId ?: '-' }}
范围:{{ $batchScopeText }};方式:{{ $batchModeText }}
+ @if($lrRunId !== '') +
结果:成功{{ $lrSuccess }} / 失败{{ $lrFailed }}
+ @if($lrTopReason !== '') +
Top:{{ mb_substr($lrTopReason, 0, 40) }}({{ $lrTopReasonCount }})
+ @endif + @endif @else - @endif diff --git a/tests/Feature/AdminPlatformOrderIndexBatchActivationLastResultShouldRenderTest.php b/tests/Feature/AdminPlatformOrderIndexBatchActivationLastResultShouldRenderTest.php new file mode 100644 index 0000000..ec605b8 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderIndexBatchActivationLastResultShouldRenderTest.php @@ -0,0 +1,84 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_page_should_render_batch_activation_last_result_summary_when_present(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'po_batch_activation_last_result_plan', + 'name' => '批量同步 last_result 渲染测试套餐', + '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_BATCH_LAST_RESULT_RENDER_0001', + 'order_type' => 'new_purchase', + 'status' => 'activated', + 'payment_status' => 'paid', + 'plan_name' => $plan->name, + 'billing_cycle' => $plan->billing_cycle, + 'period_months' => 1, + 'quantity' => 1, + 'payable_amount' => 10, + 'paid_amount' => 10, + 'placed_at' => now()->subMinutes(10), + 'paid_at' => now()->subMinutes(9), + 'activated_at' => now()->subMinutes(8), + 'meta' => [ + 'batch_activation' => [ + 'at' => now()->toDateTimeString(), + 'admin_id' => 1, + 'scope' => 'filtered', + 'mode' => 'queue', + 'run_id' => 'BAS_TEST_0001', + 'last_result' => [ + 'run_id' => 'BAS_TEST_0001', + 'success' => 3, + 'failed' => 1, + 'matched' => 10, + 'processed' => 4, + 'top_reasons' => [ + ['reason' => '模拟失败:订阅同步异常', 'count' => 1], + ], + 'at' => now()->toDateTimeString(), + ], + ], + ], + ]); + + $this->get('/admin/platform-orders') + ->assertOk() + ->assertSee('结果:成功3 / 失败1') + ->assertSee('模拟失败:订阅同步异常'); + } +}