From 055d1c787a51d49350a236231a5b8cba696a75e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Mon, 16 Mar 2026 15:23:49 +0800 Subject: [PATCH] chore(admin-platform-order): add anchors for sync/bmpa failed blocks --- .../admin/platform_orders/show.blade.php | 4 +- ...rShowFailedBlocksShouldHaveAnchorsTest.php | 74 +++++++++++++++++++ 2 files changed, 76 insertions(+), 2 deletions(-) create mode 100644 tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index 57d3810..ad6e77c 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -728,7 +728,7 @@ @endif -
+

最近一次同步失败

@if($activationError) @@ -777,7 +777,7 @@ @endif
-
+

最近一次 BMPA 失败

@if($bmpaError) diff --git a/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php b/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php new file mode 100644 index 0000000..e18d715 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest.php @@ -0,0 +1,74 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_show_failed_blocks_should_have_anchors(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'po_show_failed_anchor_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_FAILED_ANCHOR_0001', + 'order_type' => 'new_purchase', + 'status' => 'pending', + '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(), + 'paid_at' => now(), + 'meta' => [ + 'subscription_activation_error' => [ + 'message' => 'sync failed', + 'at' => now()->toDateTimeString(), + ], + 'batch_mark_paid_and_activate_error' => [ + 'message' => 'bmpa failed', + 'at' => now()->toDateTimeString(), + ], + ], + ]); + + $res = $this->get('/admin/platform-orders/' . $order->id); + $res->assertOk(); + + $res->assertSee('id="sync-failed"', false); + $res->assertSee('id="bmpa-failed"', false); + } +}