From f702c1342235c0bff87f696f4a36164e57cdc2cc Mon Sep 17 00:00:00 2001 From: TermiNexus Date: Thu, 9 Jul 2026 20:28:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E4=BA=86=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E5=AE=9D=20fucha=20=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- orders/views/payment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orders/views/payment.py b/orders/views/payment.py index 1d39e28..4795b6a 100644 --- a/orders/views/payment.py +++ b/orders/views/payment.py @@ -1109,6 +1109,8 @@ class CreateOrderView(APIView): club_id=club_id, ) qr_image = qr_link_to_base64(pay_url) + # 标记支付宝订单(fucha 接口据此跳过微信查询,直接等异步回调更新状态) + cache.set(f'alipay_pay_url_{dingdanid}', pay_url, 60 * 30) return { 'qr_code': pay_url, 'qr_image': qr_image,