feat(admin): 续费缺订阅时 BMPA 提示补齐去订阅管理查找订阅入口

This commit is contained in:
萝卜
2026-03-15 07:46:45 +00:00
parent af8665ec7d
commit 9bd19474e1
2 changed files with 90 additions and 0 deletions

View File

@@ -209,6 +209,16 @@
$markPaidBlockedByMissingSubscriptionOnRenewal = ((string) ($order->order_type ?? '') === 'renewal') $markPaidBlockedByMissingSubscriptionOnRenewal = ((string) ($order->order_type ?? '') === 'renewal')
&& ((int) ($order->site_subscription_id ?? 0) <= 0); && ((int) ($order->site_subscription_id ?? 0) <= 0);
// 治理引导:续费缺订阅时提供“去订阅管理查找订阅”入口(回到当前订单详情自身)
$missingSubscriptionHelpUrl = '';
if ($markPaidBlockedByMissingSubscriptionOnRenewal) {
$missingSubscriptionHelpUrl = \App\Support\BackUrl::withBack('/admin/site-subscriptions?' . \Illuminate\Support\Arr::query([
'merchant_id' => (int) ($order->merchant_id ?? 0) ?: null,
'plan_id' => (int) ($order->plan_id ?? 0) ?: null,
'page' => null,
]), $orderShowSelf);
}
$tol = (float) config('saasshop.amounts.tolerance', 0.01); $tol = (float) config('saasshop.amounts.tolerance', 0.01);
$tolCents = (int) round($tol * 100); $tolCents = (int) round($tol * 100);
$tolCents = max(1, $tolCents); $tolCents = max(1, $tolCents);
@@ -238,6 +248,10 @@
原因当前订单类型为「续费」但未绑定订阅site_subscription_id 为空)。 原因当前订单类型为「续费」但未绑定订阅site_subscription_id 为空)。
<span class="muted"></span> <span class="muted"></span>
<span class="muted">请先补齐订阅关联后再处理。</span> <span class="muted">请先补齐订阅关联后再处理。</span>
@if($missingSubscriptionHelpUrl !== '')
<span class="muted"></span>
<a class="btn btn-secondary btn-sm" href="{!! $missingSubscriptionHelpUrl !!}">去订阅管理查找订阅</a>
@endif
</div> </div>
@endif @endif
@if($markPaidBlockedByReceiptMismatch) @if($markPaidBlockedByReceiptMismatch)

View File

@@ -0,0 +1,76 @@
<?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 AdminPlatformOrderShowBmpaGovernanceBlockShouldIncludeFindSubscriptionLinkWhenRenewalMissingSubscriptionTest 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_show_bmpa_governance_block_should_include_find_subscription_link_when_renewal_missing_subscription(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_show_bmpa_find_sub_renewal_no_sub_plan',
'name' => '订单详情 BMPA 治理引导(续费无订阅)测试套餐',
'billing_cycle' => 'monthly',
'price' => 30,
'list_price' => 30,
'status' => 'active',
'sort' => 10,
'published_at' => now(),
]);
$order = PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'order_no' => 'PO_SHOW_BMPA_FIND_SUB_RENEW_NO_SUB_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' => 30,
'paid_amount' => 0,
'placed_at' => now(),
'meta' => [],
]);
$res = $this->get('/admin/platform-orders/' . $order->id);
$res->assertOk();
$res->assertSee('BMPA 治理提示', false);
$res->assertSee('去订阅管理查找订阅', false);
// 链接应包含 merchant_id/plan_id并携带 back 回到当前订单详情
$matched = preg_match('/<a[^>]+href="([^"]+)"[^>]*>\s*去订阅管理查找订阅\s*<\/a>/u', (string) $res->getContent(), $m);
$this->assertSame(1, $matched, '未找到 BMPA 治理提示中的「去订阅管理查找订阅」链接');
$url = $m[1] ?? '';
$parts = parse_url($url);
parse_str($parts['query'] ?? '', $q);
$this->assertSame((string) $merchant->id, (string) ($q['merchant_id'] ?? ''));
$this->assertSame((string) $plan->id, (string) ($q['plan_id'] ?? ''));
$this->assertSame('/admin/platform-orders/' . $order->id, (string) ($q['back'] ?? ''));
}
}