feat(platform-orders): add bmpa run_id filter for batch tracing
This commit is contained in:
@@ -262,6 +262,8 @@ class PlatformOrderController extends Controller
|
||||
'batch_synced_24h' => (string) $request->query('batch_synced_24h', ''),
|
||||
// 批次号筛选:用于队列批量同步 run_id 追溯
|
||||
'batch_activation_run_id' => trim((string) $request->query('batch_activation_run_id', '')),
|
||||
// 批量 BMPA 批次号筛选(run_id 追溯)
|
||||
'batch_bmpa_run_id' => trim((string) $request->query('batch_bmpa_run_id', '')),
|
||||
// 只看最近 24 小时批量“标记支付并生效(BMPA)”过的订单(可治理追踪)
|
||||
'batch_mark_paid_and_activate_24h' => (string) $request->query('batch_mark_paid_and_activate_24h', ''),
|
||||
// 只看最近 24 小时批量“仅标记为已生效”过的订单(可治理追踪)
|
||||
@@ -1296,6 +1298,8 @@ class PlatformOrderController extends Controller
|
||||
'batch_synced_24h' => (string) $request->query('batch_synced_24h', ''),
|
||||
// 批次号筛选:用于队列批量同步 run_id 追溯
|
||||
'batch_activation_run_id' => trim((string) $request->query('batch_activation_run_id', '')),
|
||||
// 批量 BMPA 批次号筛选(run_id 追溯)
|
||||
'batch_bmpa_run_id' => trim((string) $request->query('batch_bmpa_run_id', '')),
|
||||
// 只看最近 24 小时批量“标记支付并生效(BMPA)”过的订单(可治理追踪)
|
||||
'batch_mark_paid_and_activate_24h' => (string) $request->query('batch_mark_paid_and_activate_24h', ''),
|
||||
// 只看最近 24 小时批量“仅标记为已生效”过的订单(可治理追踪)
|
||||
@@ -2459,6 +2463,20 @@ class PlatformOrderController extends Controller
|
||||
$builder->whereRaw("JSON_UNQUOTE(JSON_EXTRACT(meta, '$.batch_activation.run_id')) = ?", [$runId]);
|
||||
}
|
||||
})
|
||||
->when(($filters['batch_bmpa_run_id'] ?? '') !== '', function (Builder $builder) use ($filters) {
|
||||
// 按批次号筛选:用于批量 BMPA run_id 追溯
|
||||
$runId = trim((string) ($filters['batch_bmpa_run_id'] ?? ''));
|
||||
if ($runId === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
$driver = $builder->getQuery()->getConnection()->getDriverName();
|
||||
if ($driver === 'sqlite') {
|
||||
$builder->whereRaw("JSON_EXTRACT(meta, '$.batch_mark_paid_and_activate.run_id') = ?", [$runId]);
|
||||
} else {
|
||||
$builder->whereRaw("JSON_UNQUOTE(JSON_EXTRACT(meta, '$.batch_mark_paid_and_activate.run_id')) = ?", [$runId]);
|
||||
}
|
||||
})
|
||||
->when(($filters['batch_mark_paid_and_activate_24h'] ?? '') !== '', function (Builder $builder) {
|
||||
// 只看最近 24 小时批量“标记支付并生效(BMPA)”过的订单(基于 meta.batch_mark_paid_and_activate.at)
|
||||
$since = now()->subHours(24)->format('Y-m-d H:i:s');
|
||||
|
||||
@@ -471,7 +471,8 @@
|
||||
<input type="checkbox" name="batch_synced_24h" value="1" @checked(($filters['batch_synced_24h'] ?? '') === '1')>
|
||||
<span>最近24小时批量同步过</span>
|
||||
</label>
|
||||
<input type="text" name="batch_activation_run_id" placeholder="批次号 run_id(可选)" value="{{ $filters['batch_activation_run_id'] ?? '' }}" class="w-200">
|
||||
<input type="text" name="batch_activation_run_id" placeholder="批次号 BAS run_id(可选)" value="{{ $filters['batch_activation_run_id'] ?? '' }}" class="w-200">
|
||||
<input type="text" name="batch_bmpa_run_id" placeholder="批次号 BMPA run_id(可选)" value="{{ $filters['batch_bmpa_run_id'] ?? '' }}" class="w-200">
|
||||
<label class="form-inline-row">
|
||||
<input type="checkbox" name="batch_mark_paid_and_activate_24h" value="1" @checked(($filters['batch_mark_paid_and_activate_24h'] ?? '') === '1')>
|
||||
<span>最近24小时批量BMPA过</span>
|
||||
|
||||
@@ -0,0 +1,96 @@
|
||||
<?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 AdminPlatformOrderIndexBatchBmpaRunIdFilterShouldWorkTest 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_batch_bmpa_run_id_filter_should_work(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$merchant = Merchant::query()->firstOrFail();
|
||||
$plan = Plan::query()->create([
|
||||
'code' => 'po_bmpa_run_id_filter_plan',
|
||||
'name' => 'BMPA run_id 筛选测试套餐',
|
||||
'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_RUN_ID_A_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' => 'sync',
|
||||
'run_id' => 'BMPA_TEST_A_0001',
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
PlatformOrder::query()->create([
|
||||
'merchant_id' => $merchant->id,
|
||||
'plan_id' => $plan->id,
|
||||
'order_no' => 'PO_BMPA_RUN_ID_B_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(9),
|
||||
'meta' => [
|
||||
'batch_mark_paid_and_activate' => [
|
||||
'at' => now()->toDateTimeString(),
|
||||
'admin_id' => 1,
|
||||
'scope' => 'filtered',
|
||||
'mode' => 'sync',
|
||||
'run_id' => 'BMPA_TEST_B_0001',
|
||||
],
|
||||
],
|
||||
]);
|
||||
|
||||
$this->get('/admin/platform-orders?batch_bmpa_run_id=BMPA_TEST_B_0001')
|
||||
->assertOk()
|
||||
->assertSee('PO_BMPA_RUN_ID_B_0001')
|
||||
->assertDontSee('PO_BMPA_RUN_ID_A_0001');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user