seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_show_page_will_hint_when_refunded_status_but_refund_total_less_than_paid_amount(): void { $this->loginAsPlatformAdmin(); $merchant = Merchant::query()->firstOrFail(); $plan = Plan::query()->create([ 'code' => 'refund_consistency_hint_01', 'name' => '退款一致性提示测试', '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_REFUND_HINT_0001', 'order_type' => 'new_purchase', 'status' => 'activated', 'payment_status' => 'refunded', 'plan_name' => $plan->name, 'billing_cycle' => $plan->billing_cycle, 'period_months' => 1, 'quantity' => 1, 'payable_amount' => 30, 'paid_amount' => 30, 'placed_at' => now(), 'paid_at' => now(), 'activated_at' => now(), 'refunded_at' => now(), 'meta' => [ 'refund_summary' => [ 'count' => 1, 'total_amount' => 10, 'last_at' => now()->toDateTimeString(), 'last_amount' => 10, 'last_channel' => 'wechat', ], ], ]); $this->get('/admin/platform-orders/' . $order->id) ->assertOk() ->assertSee('提示:当前订单状态为「已退款」,但退款总额小于已付金额'); } }