diff --git a/resources/views/admin/platform_orders/index.blade.php b/resources/views/admin/platform_orders/index.blade.php
index 402751a..6441e0c 100644
--- a/resources/views/admin/platform_orders/index.blade.php
+++ b/resources/views/admin/platform_orders/index.blade.php
@@ -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 @@
查看待支付(该线索)
查看待生效(该线索)
+
查看已付无回执(该线索)
查看可BMPA处理(该线索)
查看可同步(该线索)
查看同步失败(该线索)
@@ -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 @@
查看同步失败(该订阅)
查看待支付(该订阅)
查看待生效(该订阅)
+
查看已付无回执(该订阅)
查看续费缺订阅(该订阅)
diff --git a/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php b/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php
new file mode 100644
index 0000000..adf13c9
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexLeadGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php
@@ -0,0 +1,43 @@
+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);
+ }
+}
diff --git a/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php b/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php
new file mode 100644
index 0000000..f0d09a5
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderIndexSubscriptionGovernanceQuickLinksShouldIncludePaidNoReceiptTest.php
@@ -0,0 +1,70 @@
+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);
+ }
+}