platform_orders index: subscription id prefix uses muted-xs span

This commit is contained in:
萝卜
2026-03-14 13:01:09 +00:00
parent 3bc4fd76c2
commit 454140d701
2 changed files with 83 additions and 1 deletions

View File

@@ -1147,7 +1147,8 @@
<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">
订阅ID<a href="{!! $safeFullUrlWithQuery(['site_subscription_id' => $order->siteSubscription->id, 'page' => null]) !!}" class="muted muted-xs">{{ $order->siteSubscription->id }}</a> <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>
</div> </div>
@else @else
<span class="muted">-</span> <span class="muted">-</span>

View File

@@ -0,0 +1,81 @@
<?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 AdminPlatformOrderIndexSubscriptionIdPrefixUsesMutedXsTest 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_subscription_id_prefix_is_wrapped_by_muted_xs_span(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_index_sub_id_prefix_muted_xs_plan',
'name' => '平台订单列表订阅ID前缀样式测试套餐',
'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_SUB_ID_PREFIX_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_SUB_ID_PREFIX_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' => [],
]);
$this->get('/admin/platform-orders?keyword=PO_INDEX_SUB_ID_PREFIX_0001')
->assertOk()
->assertSee('<span class="muted muted-xs">订阅ID</span>', false);
}
}