- @if($markPaidBlockedByRefund || $markPaidBlockedByReceiptMismatch)
+ @if($markPaidBlockedByRefund || $markPaidBlockedByReceiptMismatch || $markPaidBlockedByMissingSubscriptionOnRenewal)
BMPA 治理提示(当前不建议/不可直接标记支付并生效)
@@ -229,6 +233,13 @@
去核对退款
@endif
+ @if($markPaidBlockedByMissingSubscriptionOnRenewal)
+
+ 原因:当前订单类型为「续费」,但未绑定订阅(site_subscription_id 为空)。
+ |
+ 请先补齐订阅关联后再处理。
+
+ @endif
@if($markPaidBlockedByReceiptMismatch)
原因:当前订单已存在支付回执,但回执总额与订单金额不一致。
diff --git a/tests/Feature/AdminPlatformOrderShowMarkPaidAndActivateButtonDisabledWhenRenewalMissingSubscriptionTest.php b/tests/Feature/AdminPlatformOrderShowMarkPaidAndActivateButtonDisabledWhenRenewalMissingSubscriptionTest.php
new file mode 100644
index 0000000..59d92bf
--- /dev/null
+++ b/tests/Feature/AdminPlatformOrderShowMarkPaidAndActivateButtonDisabledWhenRenewalMissingSubscriptionTest.php
@@ -0,0 +1,70 @@
+seed();
+
+ $this->post('/admin/login', [
+ 'email' => 'platform.admin@demo.local',
+ 'password' => 'Platform@123456',
+ ])->assertRedirect('/admin');
+ }
+
+ public function test_show_should_disable_mark_paid_and_activate_button_when_renewal_order_missing_subscription(): void
+ {
+ $this->loginAsPlatformAdmin();
+
+ $merchant = Merchant::query()->firstOrFail();
+ $plan = Plan::query()->create([
+ 'code' => 'po_show_bmpa_disable_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_DISABLE_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();
+
+ // 按钮应被禁用(disabled)
+ $res->assertSee('标记支付并生效', false);
+ $res->assertSee('disabled', false);
+
+ // 治理提示应出现
+ $res->assertSee('续费', false);
+ $res->assertSee('未绑定订阅', false);
+ $res->assertSee('BMPA 治理提示', false);
+ }
+}