From 7fe488b1f33746dde222bebed00a96b3a2209cb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 10 Mar 2026 16:53:08 +0000 Subject: [PATCH] =?UTF-8?q?feat(platform-orders):=20=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E9=A1=B5=E8=A1=A5=E5=85=85=E9=80=80=E6=AC=BE=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/platform_orders/show.blade.php | 1 + tests/Feature/AdminPlatformOrderShowTest.php | 1 + 2 files changed, 2 insertions(+) diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index ba3bda1..570d2f9 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -23,6 +23,7 @@ 下单时间{{ optional($order->placed_at)->format('Y-m-d H:i:s') ?: '-' }} 支付时间{{ optional($order->paid_at)->format('Y-m-d H:i:s') ?: '-' }} 生效时间{{ optional($order->activated_at)->format('Y-m-d H:i:s') ?: '-' }} + 退款时间{{ optional($order->refunded_at)->format('Y-m-d H:i:s') ?: '-' }} diff --git a/tests/Feature/AdminPlatformOrderShowTest.php b/tests/Feature/AdminPlatformOrderShowTest.php index 0f2188f..c93b52d 100644 --- a/tests/Feature/AdminPlatformOrderShowTest.php +++ b/tests/Feature/AdminPlatformOrderShowTest.php @@ -101,6 +101,7 @@ class AdminPlatformOrderShowTest extends TestCase ->assertSee('同步订阅') ->assertSee('最近批量生效记录') ->assertSee('订阅同步元数据') + ->assertSee('退款时间') ->assertSee('关联订阅') ->assertSee('打开订阅详情') ->assertSee('审计记录')