feat: 俱乐部订单单向互通抢单(集团配置 + 接单池/抢单校验)

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
XingQue
2026-07-26 03:08:10 +08:00
parent 1234cff035
commit 231e5162b0
7 changed files with 209 additions and 3 deletions

View File

@@ -100,6 +100,7 @@ from jituan.views_recharge_page_copy import (
RechargePageCopyAdminSaveView,
RechargePageCopyView,
)
from jituan.views_order_grab_share import ClubOrderGrabLinkManageView
urlpatterns = [
path('auth/wechat-login', ClubWechatLoginView.as_view(), name='jituan_wechat_login'),
@@ -110,6 +111,7 @@ urlpatterns = [
path('auth/perm-debug', ClubPermDebugView.as_view(), name='jituan_perm_debug'),
path('auth/dashou-register', ClubDashouRegisterView.as_view(), name='jituan_dashou_register'),
path('houtai/club-manage', ClubManageView.as_view(), name='jituan_club_manage'),
path('houtai/order-grab-link', ClubOrderGrabLinkManageView.as_view(), name='jituan_order_grab_link'),
path('houtai/payment-channel-manage', ClubPaymentChannelManageView.as_view(), name='jituan_payment_channel_manage'),
path('houtai/club-cert-upload', ClubCertUploadView.as_view(), name='jituan_club_cert_upload'),
path('houtai/admin-assignments', ClubAdminAssignmentListView.as_view(), name='jituan_admin_assignments'),