diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php
index fd6e250..9aabe01 100644
--- a/resources/views/admin/platform_orders/show.blade.php
+++ b/resources/views/admin/platform_orders/show.blade.php
@@ -209,29 +209,37 @@
@endif
+ @php
+ $syncBlockedByGovernance = $order->isReconcileMismatch() || $order->isRefundInconsistent();
+ @endphp
- 提示:当前订单命中「对账不一致/退款不一致」,为避免带病同步,请先完成金额/状态治理(补回执/核对退款/修正状态)后再同步订阅。
- @if($order->isReconcileMismatch())
- @php
- $fixReceiptUrl = '/admin/platform-orders/' . $order->id . '?' . \Illuminate\Support\Arr::query(['back' => $orderShowSelf]) . '#add-payment-receipt';
- @endphp
-
去补回执
- @endif
- @if($order->isReconcileMismatch() && $order->isRefundInconsistent())
-
|
- @endif
- @if($order->isRefundInconsistent())
- @php
- $fixRefundUrl = '/admin/platform-orders/' . $order->id . '?' . \Illuminate\Support\Arr::query(['back' => $orderShowSelf]) . '#refund-receipts';
- @endphp
-
去核对退款
- @endif
+ @if($syncBlockedByGovernance)
+
+
同步订阅治理提示(当前不建议/不可直接同步)
+
+
原因:订单命中「对账不一致/退款不一致」。为避免把“带病订单”同步到订阅,请先完成金额/状态治理。
+
+ @if($order->isReconcileMismatch())
+ @php
+ $fixReceiptUrl = '/admin/platform-orders/' . $order->id . '?' . \Illuminate\Support\Arr::query(['back' => $orderShowSelf]) . '#add-payment-receipt';
+ @endphp
+
去补回执
+ @endif
+ @if($order->isReconcileMismatch() && $order->isRefundInconsistent())
+
|
+ @endif
+ @if($order->isRefundInconsistent())
+ @php
+ $fixRefundUrl = '/admin/platform-orders/' . $order->id . '?' . \Illuminate\Support\Arr::query(['back' => $orderShowSelf]) . '#refund-receipts';
+ @endphp
+
去核对退款
+ @endif
+
+
@endif
diff --git a/tests/Feature/AdminPlatformOrderShowActivateSubscriptionButtonDisabledWhenGovernanceMismatchTest.php b/tests/Feature/AdminPlatformOrderShowActivateSubscriptionButtonDisabledWhenGovernanceMismatchTest.php
new file mode 100644
index 0000000..3a7a24f
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderShowActivateSubscriptionButtonDisabledWhenGovernanceMismatchTest.php
@@ -0,0 +1,84 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_activate_subscription_button_should_be_disabled_and_show_governance_block_when_reconcile_mismatch(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $merchant = Merchant::query()->firstOrFail();
+ $plan = Plan::query()->create([
+ 'code' => 'po_show_disable_sync_reconcile_mismatch_plan',
+ 'name' => '同步订阅禁用-对账不一致测试套餐',
+ 'billing_cycle' => 'monthly',
+ 'price' => 10,
+ 'list_price' => 10,
+ 'status' => 'active',
+ 'sort' => 10,
+ 'published_at' => now(),
+ ]);
+
+ // 已支付+已生效,但回执总额=9,paid_amount=10 => reconcile_mismatch=true
+ $order = PlatformOrder::query()->create([
+ 'merchant_id' => $merchant->id,
+ 'plan_id' => $plan->id,
+ 'order_no' => 'PO_SHOW_DISABLE_SYNC_RECON_0001',
+ 'order_type' => 'new_purchase',
+ '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/platform-orders/' . $order->id);
+ $res->assertOk();
+
+ $res->assertSee('同步订阅治理提示', false);
+ $res->assertSee('去补回执', false);
+ $res->assertSee('href="/admin/platform-orders/' . $order->id, false); // should include a link back to this page + anchor
+ $res->assertSee('disabled', false);
+ }
+}