fix: 全支付接口入口拦截小汐支付宝,微信支付路径不动
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -45,6 +45,15 @@ def assert_alipay_allowed_for_club(club_id=None):
|
||||
raise Exception(ALIPAY_DISABLED_MSG)
|
||||
|
||||
|
||||
def alipay_pay_method_block_reason(pay_method, club_id=None):
|
||||
"""支付接口入口:仅 pay_method=alipay 且俱乐部禁用时返回文案;微信/其它一律 None。"""
|
||||
if (pay_method or '').strip().lower() != 'alipay':
|
||||
return None
|
||||
if is_alipay_enabled_for_club(club_id):
|
||||
return None
|
||||
return ALIPAY_DISABLED_MSG
|
||||
|
||||
|
||||
# ==================== 配置读取 ====================
|
||||
|
||||
def get_alipay_config(club_id=None):
|
||||
|
||||
Reference in New Issue
Block a user