diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php
index 1915d9f..318e060 100644
--- a/resources/views/admin/dashboard.blade.php
+++ b/resources/views/admin/dashboard.blade.php
@@ -860,6 +860,7 @@
$scanGoReconcileUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'add-payment-receipt');
$scanGoPaymentReceiptsUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'payment-receipts');
$scanGoRefundUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'add-refund-receipt');
+ $scanGoRefundReceiptsUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'refund-receipts');
$scanGoSyncFailedUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'sync-failed');
$scanGoBmpaFailedUrl = \App\Support\BackUrl::withBackAndFragment('/admin/platform-orders/' . $po->id, $selfWithoutBack, 'bmpa-failed');
$bmpaSuccessListUrl = $platformOrdersQuickLinks['bmpa_success'] ?? '';
@@ -973,6 +974,8 @@
退款:
@if($refundStatusText !== '-' && $refundStatusText !== '无')
{{ $refundStatusText }}
+ @elseif($refundStatusText === '无')
+ {{ $refundStatusText }}
@else
{{ $refundStatusText }}
@endif
diff --git a/tests/Feature/AdminDashboardRecentPlatformOrdersScanlineRefundNoneShouldLinkToRefundReceiptsPanelTest.php b/tests/Feature/AdminDashboardRecentPlatformOrdersScanlineRefundNoneShouldLinkToRefundReceiptsPanelTest.php
new file mode 100644
index 0000000..196f723
--- /dev/null
+++ b/tests/Feature/AdminDashboardRecentPlatformOrdersScanlineRefundNoneShouldLinkToRefundReceiptsPanelTest.php
@@ -0,0 +1,76 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_dashboard_recent_platform_orders_scanline_refund_none_should_link_to_refund_receipts_panel(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ // 清理 seed 订单,避免最近订单列表被 seed 污染导致断言不稳定。
+ PlatformOrder::query()->delete();
+
+ $merchant = Merchant::query()->firstOrFail();
+ $platformAdminId = (int) Admin::query()->where('email', 'platform.admin@demo.local')->value('id');
+
+ $plan = Plan::query()->create([
+ 'code' => 'dash_recent_order_scanline_refund_none_plan',
+ 'name' => '仪表盘扫描行退款无直达测试套餐',
+ '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,
+ 'site_subscription_id' => null,
+ 'created_by_admin_id' => $platformAdminId ?: null,
+ 'order_no' => 'PO_DASH_SCANLINE_REFUND_NONE_0001',
+ 'order_type' => 'new_purchase',
+ 'status' => 'pending',
+ 'payment_status' => 'paid',
+ 'payable_amount' => 10,
+ 'paid_amount' => 10,
+ 'placed_at' => now(),
+ 'paid_at' => now(),
+ 'meta' => [
+ // 明确无退款轨迹
+ 'refund_summary' => ['total_amount' => 0, 'count' => 0],
+ ],
+ ]);
+
+ $res = $this->get('/admin');
+ $res->assertOk();
+
+ $res->assertSee('PO_DASH_SCANLINE_REFUND_NONE_0001');
+
+ // 退款:无 应可直达订单详情退款区(#refund-receipts),便于 spot-check。
+ $res->assertSee('退款:', false);
+ $res->assertSee('无', false);
+ $res->assertSee('#refund-receipts', false);
+ }
+}