diff --git a/tests/Feature/AdminPlatformOrderBatchMarkActivatedRefundStatusFilterFieldsTest.php b/tests/Feature/AdminPlatformOrderBatchMarkActivatedRefundStatusFilterFieldsTest.php new file mode 100644 index 0000000..42553fc --- /dev/null +++ b/tests/Feature/AdminPlatformOrderBatchMarkActivatedRefundStatusFilterFieldsTest.php @@ -0,0 +1,103 @@ +seed(); + + $this->post('/admin/login', [ + 'email' => 'platform.admin@demo.local', + 'password' => 'Platform@123456', + ])->assertRedirect('/admin'); + } + + public function test_batch_mark_activated_filtered_scope_respects_refund_status_filter_fields(): void + { + $this->loginAsPlatformAdmin(); + + $merchant = Merchant::query()->firstOrFail(); + $plan = Plan::query()->create([ + 'code' => 'batch_mark_activated_refund_status_filter_fields_test', + 'name' => '批量仅标记为已生效(退款筛选)测试套餐', + 'billing_cycle' => 'monthly', + 'price' => 10, + 'list_price' => 10, + 'status' => 'active', + 'sort' => 10, + 'published_at' => now(), + ]); + + // A:无退款,待处理(pending+paid),应被 refund_status=none 命中 + $a = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_BMA_REFUND_NONE_A', + 'order_type' => 'new_purchase', + 'status' => 'pending', + '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(), + 'meta' => [], + ]); + + // B:有退款,待处理(pending+paid),不应被 refund_status=none 命中 + $b = PlatformOrder::query()->create([ + 'merchant_id' => $merchant->id, + 'plan_id' => $plan->id, + 'order_no' => 'PO_BMA_REFUND_HAS_B', + 'order_type' => 'new_purchase', + 'status' => 'pending', + '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(), + 'meta' => [ + 'refund_receipts' => [ + ['amount' => 1.00, 'refunded_at' => now()->toDateTimeString()], + ], + ], + ]); + + // 访问列表页:确保工具表单透传 refund_status + $page = $this->get('/admin/platform-orders?payment_status=paid&status=pending&refund_status=none'); + $page->assertOk(); + $page->assertSee('name="refund_status"', false); + $page->assertSee('value="none"', false); + + $this->post('/admin/platform-orders/batch-mark-activated', [ + 'scope' => 'filtered', + 'payment_status' => 'paid', + 'status' => 'pending', + 'refund_status' => 'none', + 'limit' => 50, + ])->assertRedirect(); + + $a->refresh(); + $b->refresh(); + + $this->assertSame('activated', $a->status); + $this->assertSame('pending', $b->status); + } +}