From 96e9b67f6401ef542b0c3afbee3956e9ee476163 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Fri, 13 Mar 2026 14:03:54 +0000 Subject: [PATCH] platform orders: add 24h batch BMPA summary stat and card --- .../Admin/PlatformOrderController.php | 15 +++ .../admin/platform_orders/index.blade.php | 5 + ...hMarkPaidAndActivate24hSummaryCardTest.php | 96 +++++++++++++++++++ 3 files changed, 116 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderBatchMarkPaidAndActivate24hSummaryCardTest.php diff --git a/app/Http/Controllers/Admin/PlatformOrderController.php b/app/Http/Controllers/Admin/PlatformOrderController.php index 6691614..5d6a889 100644 --- a/app/Http/Controllers/Admin/PlatformOrderController.php +++ b/app/Http/Controllers/Admin/PlatformOrderController.php @@ -310,6 +310,21 @@ class PlatformOrderController extends Controller return $q->count(); })(), + 'batch_mark_paid_and_activate_24h_orders' => (function () use ($baseQuery) { + $since = now()->subHours(24)->format('Y-m-d H:i:s'); + + $q = (clone $baseQuery) + ->whereRaw("JSON_EXTRACT(meta, '$.batch_mark_paid_and_activate.at') IS NOT NULL"); + + $driver = $q->getQuery()->getConnection()->getDriverName(); + if ($driver === 'sqlite') { + $q->whereRaw("JSON_EXTRACT(meta, '$.batch_mark_paid_and_activate.at') >= ?", [$since]); + } else { + $q->whereRaw("JSON_UNQUOTE(JSON_EXTRACT(meta, '$.batch_mark_paid_and_activate.at')) >= ?", [$since]); + } + + return $q->count(); + })(), 'batch_mark_activated_24h_orders' => (function () use ($baseQuery) { $since = now()->subHours(24)->format('Y-m-d H:i:s'); diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php index d3b8097..17927ae 100644 --- a/resources/views/admin/platform_orders/index.blade.php +++ b/resources/views/admin/platform_orders/index.blade.php @@ -180,6 +180,11 @@
{{ $summaryStats['batch_synced_24h_orders'] ?? 0 }}
基于 meta.batch_activation.at
+
+

近24小时批量BMPA

+
{{ $summaryStats['batch_mark_paid_and_activate_24h_orders'] ?? 0 }}
+
基于 meta.batch_mark_paid_and_activate.at
+

近24小时批量生效

{{ $summaryStats['batch_mark_activated_24h_orders'] ?? 0 }}
diff --git a/tests/Feature/AdminPlatformOrderBatchMarkPaidAndActivate24hSummaryCardTest.php b/tests/Feature/AdminPlatformOrderBatchMarkPaidAndActivate24hSummaryCardTest.php new file mode 100644 index 0000000..57b7765 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderBatchMarkPaidAndActivate24hSummaryCardTest.php @@ -0,0 +1,96 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_platform_orders_page_shows_batch_bmpa_24h_summary_card(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'batch_bmpa_24h_plan', + 'name' => '批量BMPA24h摘要测试套餐', + '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_BMPA24H_RECENT', + 'order_type' => 'renewal', + 'status' => 'activated', + '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()->subMinutes(20), + 'paid_at' => now()->subMinutes(18), + 'activated_at' => now()->subMinutes(10), + 'meta' => [ + 'batch_mark_paid_and_activate' => [ + 'at' => now()->toDateTimeString(), + 'admin_id' => 1, + 'scope' => 'filtered', + ], + ], + ]); + + PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_BMPA24H_OLD', + 'order_type' => 'renewal', + 'status' => 'activated', + '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()->subHours(30), + 'paid_at' => now()->subHours(30), + 'activated_at' => now()->subHours(30), + 'meta' => [ + 'batch_mark_paid_and_activate' => [ + 'at' => now()->subHours(30)->toDateTimeString(), + 'admin_id' => 1, + 'scope' => 'filtered', + ], + ], + ]); + + $res = $this->get('/admin/platform-orders'); + $res->assertOk(); + $res->assertSee('近24小时批量BMPA', false); + $res->assertSee('1', false); + } +}