ui(platform-orders): render batch bmpa mode/scope in list

This commit is contained in:
萝卜
2026-03-17 15:04:44 +08:00
parent 95a52d3f49
commit 0bc79701c9
2 changed files with 78 additions and 0 deletions

View File

@@ -1580,8 +1580,16 @@
$blrTopReasonCount = (int) (data_get($bmpaLastResult, 'top_reasons.0.count') ?? 0);
@endphp
@if($bmpaAt !== '')
@php
$bmpaMode = (string) (data_get($batchBmpa, 'mode') ?? '');
$bmpaModeText = $bmpaMode === 'queue' ? '队列' : ($bmpaMode !== '' ? $bmpaMode : '同步');
$bmpaScope = (string) (data_get($batchBmpa, 'scope') ?? '');
$bmpaScopeText = $bmpaScope === 'all' ? '全量' : ($bmpaScope === 'filtered' ? '筛选' : ($bmpaScope !== '' ? $bmpaScope : '-'));
@endphp
<div>{{ $bmpaAt }}</div>
<div class="muted">管理员:{{ $bmpaAdminId ?: '-' }}</div>
<div class="muted muted-xs">范围:{{ $bmpaScopeText }};方式:{{ $bmpaModeText }}</div>
@if($bmpaRunId !== '')
<div class="muted muted-xs">批次:

View File

@@ -0,0 +1,70 @@
<?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 AdminPlatformOrderIndexBatchBmpaModeAndScopeShouldRenderTest 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_platform_orders_page_should_render_batch_bmpa_mode_and_scope_when_present(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_bmpa_mode_scope_plan',
'name' => 'BMPA mode/scope 渲染测试套餐',
'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_BMPA_MODE_SCOPE_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()->subMinutes(10),
'meta' => [
'batch_mark_paid_and_activate' => [
'at' => now()->toDateTimeString(),
'admin_id' => 1,
'scope' => 'filtered',
'mode' => 'queue',
'run_id' => 'BMPA_TEST_MODE_SCOPE_0001',
],
],
]);
$this->get('/admin/platform-orders')
->assertOk()
->assertSee('范围:筛选;方式:队列');
}
}