Dashboard scanline: refund none links to refund receipts panel

This commit is contained in:
萝卜
2026-03-18 06:26:54 +08:00
parent 053dd40e3a
commit 58f0ce78dd
2 changed files with 79 additions and 0 deletions

View File

@@ -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 !== '无')
<a class="link" href="{!! $scanGoRefundUrl !!}"><strong>{{ $refundStatusText }}</strong></a>
@elseif($refundStatusText === '无')
<a class="link" href="{!! $scanGoRefundReceiptsUrl !!}"><strong>{{ $refundStatusText }}</strong></a>
@else
<strong>{{ $refundStatusText }}</strong>
@endif

View File

@@ -0,0 +1,76 @@
<?php
namespace Tests\Feature;
use App\Models\Admin;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminDashboardRecentPlatformOrdersScanlineRefundNoneShouldLinkToRefundReceiptsPanelTest 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_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('<strong>无</strong>', false);
$res->assertSee('#refund-receipts', false);
}
}