From 7e3274bc3d4712be78de0dd26ae1ad859e76a585 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Mon, 16 Mar 2026 00:32:45 +0800 Subject: [PATCH] dashboard: trend dates link to platform orders filtered by created_at --- resources/views/admin/dashboard.blade.php | 12 +++- ...nd7dDateShouldLinkToFilteredOrdersTest.php | 66 +++++++++++++++++++ 2 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 tests/Feature/AdminDashboardPlatformOrderTrend7dDateShouldLinkToFilteredOrdersTest.php diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php index a6ceea5..d4400bb 100644 --- a/resources/views/admin/dashboard.blade.php +++ b/resources/views/admin/dashboard.blade.php @@ -99,7 +99,17 @@ @forelse($trendRows as $row) - {{ (string) ($row['date'] ?? '') }} + @php + $d = (string) ($row['date'] ?? ''); + $dayOrdersUrl = \App\Support\BackUrl::withBack( + '/admin/platform-orders?' . \Illuminate\Support\Arr::query([ + 'created_from' => $d, + 'created_to' => $d, + ]), + $selfWithoutBack + ); + @endphp + {{ $d }} {{ (int) ($row['count'] ?? 0) }} ¥{{ number_format((float) ($row['paid_sum'] ?? 0), 2) }} diff --git a/tests/Feature/AdminDashboardPlatformOrderTrend7dDateShouldLinkToFilteredOrdersTest.php b/tests/Feature/AdminDashboardPlatformOrderTrend7dDateShouldLinkToFilteredOrdersTest.php new file mode 100644 index 0000000..6d67376 --- /dev/null +++ b/tests/Feature/AdminDashboardPlatformOrderTrend7dDateShouldLinkToFilteredOrdersTest.php @@ -0,0 +1,66 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_dashboard_platform_order_trend_7d_date_should_link_to_filtered_orders(): void + { + $this->loginAsPlatformAdmin(); + + $merchantId = (int) Merchant::query()->value('id'); + $platformAdminId = (int) Admin::query()->where('email', 'platform.admin@demo.local')->value('id'); + + $po = PlatformOrder::query()->create([ + 'merchant_id' => $merchantId, + 'plan_id' => null, + 'site_subscription_id' => null, + 'created_by_admin_id' => $platformAdminId ?: null, + 'order_no' => 'PO_TREND_LINK_D3', + 'order_type' => 'new_purchase', + 'status' => 'pending', + 'payment_status' => 'paid', + 'payable_amount' => 10, + 'paid_amount' => 10, + ]); + + PlatformOrder::query()->where('id', $po->id)->update([ + 'created_at' => now()->subDays(3)->startOfDay(), + 'updated_at' => now()->subDays(3)->startOfDay(), + ]); + + $d3 = now()->subDays(3)->format('Y-m-d'); + + $res = $this->get('/admin'); + $res->assertOk(); + + $expectedUrl = '/admin/platform-orders?' . Arr::query([ + 'created_from' => $d3, + 'created_to' => $d3, + 'back' => '/admin', + ]); + + $res->assertSee('data-role="platform-order-trend-7d"', false); + $res->assertSee($expectedUrl, false); + $res->assertDontSee('&back=', false); + } +}