platform orders: add 24h batch BMPA summary stat and card
This commit is contained in:
@@ -310,6 +310,21 @@ class PlatformOrderController extends Controller
|
|||||||
|
|
||||||
return $q->count();
|
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) {
|
'batch_mark_activated_24h_orders' => (function () use ($baseQuery) {
|
||||||
$since = now()->subHours(24)->format('Y-m-d H:i:s');
|
$since = now()->subHours(24)->format('Y-m-d H:i:s');
|
||||||
|
|
||||||
|
|||||||
@@ -180,6 +180,11 @@
|
|||||||
<div class="metric-number">{{ $summaryStats['batch_synced_24h_orders'] ?? 0 }}</div>
|
<div class="metric-number">{{ $summaryStats['batch_synced_24h_orders'] ?? 0 }}</div>
|
||||||
<div class="muted muted-xs">基于 meta.batch_activation.at</div>
|
<div class="muted muted-xs">基于 meta.batch_activation.at</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="card">
|
||||||
|
<h3>近24小时批量BMPA</h3>
|
||||||
|
<div class="metric-number">{{ $summaryStats['batch_mark_paid_and_activate_24h_orders'] ?? 0 }}</div>
|
||||||
|
<div class="muted muted-xs">基于 meta.batch_mark_paid_and_activate.at</div>
|
||||||
|
</div>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h3>近24小时批量生效</h3>
|
<h3>近24小时批量生效</h3>
|
||||||
<div class="metric-number">{{ $summaryStats['batch_mark_activated_24h_orders'] ?? 0 }}</div>
|
<div class="metric-number">{{ $summaryStats['batch_mark_activated_24h_orders'] ?? 0 }}</div>
|
||||||
|
|||||||
@@ -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 AdminPlatformOrderBatchMarkPaidAndActivate24hSummaryCardTest 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_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);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user