总台平台订单治理入口补充已付无回执快捷链接

This commit is contained in:
萝卜
2026-03-18 21:36:51 +08:00
parent d953094ecf
commit 1750dd17eb
3 changed files with 128 additions and 0 deletions

View File

@@ -154,6 +154,11 @@
'status' => 'pending',
'sync_status' => 'unsynced',
]);
$leadPaidNoReceiptUrl = $buildLeadGovernUrl([
'payment_status' => 'paid',
'receipt_status' => 'none',
]);
@endphp
@php
$leadBmpaUrl = $buildLeadGovernUrl([
@@ -179,6 +184,7 @@
<div class="mt-6 actions gap-10">
<a class="btn btn-secondary btn-sm" href="{!! $leadUnpaidUrl !!}">查看待支付(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadPaidPendingUrl !!}">查看待生效(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadPaidNoReceiptUrl !!}">查看已付无回执(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadBmpaUrl !!}">查看可BMPA处理该线索</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadSyncableUrl !!}">查看可同步(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadSyncFailedUrl !!}">查看同步失败(该线索)</a>
@@ -281,6 +287,14 @@
'fail_only' => null,
]);
$subPaidNoReceiptUrl = $buildSubGovernUrl([
'payment_status' => 'paid',
'receipt_status' => 'none',
'syncable_only' => null,
'sync_status' => null,
'fail_only' => null,
]);
$subRenewalMissingSubscriptionUrl = $buildSubGovernUrl([
'renewal_missing_subscription' => '1',
]);
@@ -290,6 +304,7 @@
<a class="btn btn-secondary btn-sm" href="{!! $subSyncFailedUrl !!}">查看同步失败(该订阅)</a>
<a class="btn btn-secondary btn-sm" href="{!! $subUnpaidUrl !!}">查看待支付(该订阅)</a>
<a class="btn btn-secondary btn-sm" href="{!! $subPaidPendingUrl !!}">查看待生效(该订阅)</a>
<a class="btn btn-secondary btn-sm" href="{!! $subPaidNoReceiptUrl !!}">查看已付无回执(该订阅)</a>
<a class="btn btn-secondary btn-sm" href="{!! $subRenewalMissingSubscriptionUrl !!}">查看续费缺订阅(该订阅)</a>
</div>
</div>

View File

@@ -0,0 +1,43 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
use Tests\TestCase;
class AdminPlatformOrderIndexLeadGovernanceQuickLinksShouldIncludePaidNoReceiptTest 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_index_should_include_paid_no_receipt_link_when_lead_locked(): void
{
$this->loginAsPlatformAdmin();
$leadId = 12;
$res = $this->get('/admin/platform-orders?' . Arr::query([
'lead_id' => $leadId,
]));
$res->assertOk();
$res->assertSee('查看已付无回执(该线索)', false);
$paidNoReceiptUrl = '/admin/platform-orders?' . Arr::query([
'lead_id' => $leadId,
'payment_status' => 'paid',
'receipt_status' => 'none',
]);
$res->assertSee($paidNoReceiptUrl, false);
}
}

View File

@@ -0,0 +1,70 @@
<?php
namespace Tests\Feature;
use App\Models\Merchant;
use App\Models\Plan;
use App\Models\SiteSubscription;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Arr;
use Tests\TestCase;
class AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksShouldIncludePaidNoReceiptTest 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_index_should_include_paid_no_receipt_link_when_subscription_locked(): void
{
$this->loginAsPlatformAdmin();
$merchant = Merchant::query()->firstOrFail();
$plan = Plan::query()->create([
'code' => 'po_index_sub_paid_no_receipt_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' => 'activated',
'source' => 'manual',
'subscription_no' => 'SS_SUB_GOV_PAID_NO_RECEIPT_0001',
'plan_name' => $plan->name,
'billing_cycle' => $plan->billing_cycle,
'period_months' => 1,
'amount' => 10,
'starts_at' => now()->subDay(),
'ends_at' => now()->addMonth(),
'activated_at' => now()->subDay(),
]);
$res = $this->get('/admin/platform-orders?site_subscription_id=' . $sub->id);
$res->assertOk();
$res->assertSee('查看已付无回执(该订阅)', false);
$paidNoReceiptUrl = '/admin/platform-orders?' . Arr::query([
'site_subscription_id' => $sub->id,
'payment_status' => 'paid',
'receipt_status' => 'none',
]);
$res->assertSee($paidNoReceiptUrl, false);
}
}