platform_orders index: introduce row-meta helper class for second-line info

This commit is contained in:
萝卜
2026-03-14 13:05:41 +00:00
parent b524fbf140
commit 6446eb4ad3
3 changed files with 89 additions and 2 deletions

View File

@@ -89,6 +89,7 @@
/* 平台订单列表(精简视图):进一步收敛信息密度 */ /* 平台订单列表(精简视图):进一步收敛信息密度 */
.platform-orders-table.is-compact td{padding-top:8px;padding-bottom:8px;} .platform-orders-table.is-compact td{padding-top:8px;padding-bottom:8px;}
.platform-orders-table.is-compact .muted-xs{font-size:12px;} .platform-orders-table.is-compact .muted-xs{font-size:12px;}
.platform-orders-table .row-meta{margin-top:2px;}
/* 平台订单列表:精简视图也要可达的治理提示(对账/退款不一致) */ /* 平台订单列表:精简视图也要可达的治理提示(对账/退款不一致) */
.platform-orders-table .governance-hints{margin-bottom:6px;} .platform-orders-table .governance-hints{margin-bottom:6px;}

View File

@@ -1045,7 +1045,7 @@
} }
@endphp @endphp
@if($rowLeadId > 0) @if($rowLeadId > 0)
<div class="muted muted-xs"> <div class="muted muted-xs row-meta">
<span class="muted muted-xs">线索:</span> <span class="muted muted-xs">线索:</span>
<a class="link muted-xs" href="{!! $rowLeadUrl !!}">#{{ $rowLeadId }}</a> <a class="link muted-xs" href="{!! $rowLeadUrl !!}">#{{ $rowLeadId }}</a>
</div> </div>
@@ -1149,7 +1149,7 @@
@endphp @endphp
<a class="link" href="{!! $subLink !!}">{{ $order->siteSubscription->subscription_no }}</a> <a class="link" href="{!! $subLink !!}">{{ $order->siteSubscription->subscription_no }}</a>
</div> </div>
<div class="muted muted-xs"> <div class="muted muted-xs row-meta">
<span class="muted muted-xs">订阅ID</span> <span class="muted muted-xs">订阅ID</span>
<a href="{!! $safeFullUrlWithQuery(['site_subscription_id' => $order->siteSubscription->id, 'page' => null]) !!}" class="muted muted-xs">{{ $order->siteSubscription->id }}</a> <a href="{!! $safeFullUrlWithQuery(['site_subscription_id' => $order->siteSubscription->id, 'page' => null]) !!}" class="muted muted-xs">{{ $order->siteSubscription->id }}</a>
</div> </div>

View File

@@ -0,0 +1,86 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\PlatformOrder;
use App\Models\SiteSubscription;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexRowMetaClassTest 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_meta_class_is_used_for_lead_and_subscription_id_second_line(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_index_row_meta_class_plan',
'name' => '平台订单列表 row-meta class 测试套餐',
'billing_cycle' => 'monthly',
'price' => 10,
'list_price' => 10,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$sub = SiteSubscription::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'status' => 'active',
'source' => 'test',
'subscription_no' => 'SS_ROW_META_0001',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'amount' => 10,
'starts_at' => now(),
'ends_at' => now()->addMonth(),
]);
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'site_subscription_id' => $sub->id,
'order_no' => 'PO_INDEX_ROW_META_0001',
'order_type' => 'renewal',
'status' => 'activated',
'payment_status' => 'paid',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'quantity' => 1,
'payable_amount' => 10,
'paid_amount' => 10,
'placed_at' => now(),
'paid_at' => now(),
'activated_at' => now(),
'meta' => [
'platform_lead_id' => 55,
],
]);
$res = $this->get('/admin/platform-orders?keyword=PO_INDEX_ROW_META_0001');
$res->assertOk();
$res->assertSee('muted muted-xs row-meta', false);
$res->assertSee('<span class="muted muted-xs">线索:</span>', false);
$res->assertSee('<span class="muted muted-xs">订阅ID</span>', false);
}
}