feat(admin): 平台订单列表行失败原因可点击跳转到同原因失败订单

This commit is contained in:
萝卜
2026-03-11 01:38:19 +00:00
parent e809ddc826
commit 86008b7362
2 changed files with 75 additions and 1 deletions

View File

@@ -497,7 +497,7 @@
<td>
@php $syncErrMsg = (string) (data_get($order->meta, 'subscription_activation_error.message') ?? ''); @endphp
@if($syncErrMsg !== '')
<span class="text-danger">{{ mb_substr($syncErrMsg, 0, 60) }}</span>
<a class="link text-danger" href="{!! request()->fullUrlWithQuery(['sync_error_keyword' => $syncErrMsg, 'sync_status' => 'failed', 'page' => null]) !!}">{{ mb_substr($syncErrMsg, 0, 60) }}</a>
@else
<span class="muted">-</span>
@endif

View File

@@ -0,0 +1,74 @@
<?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 AdminPlatformOrderRowSyncErrorLinkTest 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_row_sync_error_message_is_clickable_to_filter_failed_orders_by_reason(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'row_sync_err_link_test',
'name' => '行失败原因链接测试',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$reason = '模拟失败:站点已过期';
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_ROW_ERR_0001',
'order_type' => 'renewal',
'status' => 'pending',
'payment_status' => 'unpaid',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'quantity' => 1,
'payable_amount' => 10,
'paid_amount' => 0,
'placed_at' => now()->subMinutes(2),
'meta' => [
'subscription_activation_error' => [
'message' => $reason,
'at' => now()->toDateTimeString(),
'admin_id' => 1,
],
],
]);
$this->get('/admin/platform-orders')
->assertOk()
->assertSee('PO_ROW_ERR_0001')
->assertSee(
'/admin/platform-orders?sync_error_keyword=' . urlencode($reason) . '&sync_status=failed',
false
);
}
}