订阅详情:批量同步按钮前增加治理提示块(对账/退款异常)

This commit is contained in:
萝卜
2026-03-14 00:48:18 +00:00
parent 69f85172f6
commit 9323793485
2 changed files with 136 additions and 0 deletions

View File

@@ -152,6 +152,43 @@
</div>
<div class="mt-10" id="syncable-batch">
@php
$reconcileMismatchOrders = (int) ($summaryStats['reconcile_mismatch_orders'] ?? 0);
$refundInconsistentOrders = (int) ($summaryStats['refund_inconsistent_orders'] ?? 0);
@endphp
@if($reconcileMismatchOrders > 0 || $refundInconsistentOrders > 0)
<div class="card governance-block" style="margin-bottom:10px;">
<div class="muted text-danger governance-block-title"><strong>批量同步治理提示</strong></div>
<div class="muted governance-block-body">
当前订阅下存在
@if($reconcileMismatchOrders > 0)
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'reconcile_mismatch' => '1']) !!}">对账不一致</a>
<span class="muted">{{ $reconcileMismatchOrders }}</span>
@endif
@if($reconcileMismatchOrders > 0 && $refundInconsistentOrders > 0)
<span class="muted"></span>
@endif
@if($refundInconsistentOrders > 0)
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'refund_inconsistent' => '1']) !!}">退款不一致</a>
<span class="muted">{{ $refundInconsistentOrders }}</span>
@endif
订单。建议先逐单治理金额/状态口径(补回执/核对退款/修正状态),再批量同步订阅。
@if($reconcileMismatchOrders > 0)
<div style="margin-top:6px;">
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'reconcile_mismatch' => '1']) !!}">进入对账不一致订单列表</a>
</div>
@endif
@if($refundInconsistentOrders > 0)
<div style="margin-top:6px;">
<a class="link" href="{!! $makePlatformOrderUrl(['site_subscription_id' => $subscription->id, 'refund_inconsistent' => '1']) !!}">进入退款不一致订单列表</a>
</div>
@endif
</div>
</div>
@endif
<form method="post" action="/admin/platform-orders/batch-activate-subscriptions" onsubmit="return confirm('确认批量同步该订阅下“可同步”的订单?(仅处理:已支付+已生效+未同步)');">
@csrf
<input type="hidden" name="scope" value="filtered">

View File

@@ -0,0 +1,99 @@
<?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 AdminSiteSubscriptionShowBatchSyncGovernanceHintTest 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_should_render_batch_sync_governance_hint_when_mismatch_orders_exist(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'sub_show_batch_sync_gov_plan',
'name' => '订阅详情批量同步治理提示测试套餐',
'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' => 'manual',
'subscription_no' => 'SUB_BATCH_SYNC_GOV_0001',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'amount' => 10,
'starts_at' => now(),
'ends_at' => now()->addMonth(),
]);
// 构造一条对账不一致订单receipt_total=9, paid_amount=10让订阅详情页出现治理提示
PlatformOrder::query()->create([
'merchant_id' => $merchant->id,
'plan_id' => $plan->id,
'site_subscription_id' => $sub->id,
'order_no' => 'PO_SUB_BATCH_SYNC_GOV_RECON_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' => [
'payment_summary' => [
'count' => 1,
'total_amount' => 9,
],
'payment_receipts' => [
[
'type' => 'bank_transfer',
'channel' => 'offline',
'amount' => 9,
'paid_at' => now()->toDateTimeString(),
'created_at' => now()->toDateTimeString(),
'admin_id' => 1,
],
],
],
]);
$res = $this->get('/admin/site-subscriptions/' . $sub->id);
$res->assertOk();
$res->assertSee('批量同步治理提示', false);
$res->assertSee('对账不一致', false);
$res->assertSee('进入对账不一致订单列表', false);
}
}