chore(admin-platform-order): add anchors for sync/bmpa failed blocks

This commit is contained in:
萝卜
2026-03-16 15:23:49 +08:00
parent 3302332a96
commit 055d1c787a
2 changed files with 76 additions and 2 deletions

View File

@@ -728,7 +728,7 @@
@endif @endif
</div> </div>
<div class="card mb-20"> <div class="card mb-20" id="sync-failed">
<div class="flex-between"> <div class="flex-between">
<h3>最近一次同步失败</h3> <h3>最近一次同步失败</h3>
@if($activationError) @if($activationError)
@@ -777,7 +777,7 @@
@endif @endif
</div> </div>
<div class="card mb-20"> <div class="card mb-20" id="bmpa-failed">
<div class="flex-between"> <div class="flex-between">
<h3>最近一次 BMPA 失败</h3> <h3>最近一次 BMPA 失败</h3>
@if($bmpaError) @if($bmpaError)

View File

@@ -0,0 +1,74 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderShowFailedBlocksShouldHaveAnchorsTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->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);
}
}