create([ 'name' => '单测站点_receipt', 'slug' => 'unit-test-merchant-receipt', 'status' => 'active', ]); $plan = Plan::query()->create([ 'code' => 'unit_test_plan_receipt_total', 'name' => '单测套餐_receipt', 'billing_cycle' => 'monthly', 'price' => 10, 'list_price' => 10, 'status' => 'active', 'sort' => 10, 'published_at' => now(), ]); $order = PlatformOrder::query()->create([ 'merchant_id' => $merchant->id, 'plan_id' => $plan->id, 'order_no' => 'PO_UNIT_RECEIPT_TOTAL_0001', 'order_type' => 'subscription', 'status' => 'activated', 'payment_status' => 'paid', 'plan_name' => 'Unit Test Plan', 'billing_cycle' => 'monthly', 'period_months' => 1, 'quantity' => 1, 'payable_amount' => 10, 'paid_amount' => 10, 'placed_at' => now(), 'meta' => [ 'payment_receipts' => [ ['amount' => 3.25], ['amount' => 1.15], ], ], ]); $this->assertEquals(4.40, $order->receiptTotal()); } }