feat(platform-orders): add bmpa run_id filter for batch tracing

This commit is contained in:
萝卜
2026-03-17 14:11:35 +08:00
parent 0718090f49
commit a806ed9b1c
3 changed files with 116 additions and 1 deletions

View File

@@ -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');