From ca3d1cbc749143db469e22a9f3c26ab640e28fe6 Mon Sep 17 00:00:00 2001 From: weizong song Date: Wed, 15 Oct 2025 01:52:53 +0800 Subject: [PATCH] up --- app/Libs/AlipayF2F.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Libs/AlipayF2F.class.php b/app/Libs/AlipayF2F.class.php index 89057a2..3d59081 100644 --- a/app/Libs/AlipayF2F.class.php +++ b/app/Libs/AlipayF2F.class.php @@ -64,7 +64,9 @@ class AlipayF2F public function manualQuery(Recharge $recharge) { - $config = $this->getOptions(); + $merchantId = $recharge->merchant_id; + $alipayAccount = AlipayAccount::where('appid', $merchantId)->withTrashed()->first(); + $config = $this->getOptions($alipayAccount); $query_result = Factory::setOptions($config)::payment() ->common() ->query($recharge->serial);