feat: 会员体验版、俱乐部分离上架与分红计数加固

扩展 club_huiyuan_price/huiyuangoumai/czjilu/gsfenhong 字段;微信购会员强制写 czjilu+收支入账;formal_cishu 仅统计正式已支付单;关闭余额购会员;俱乐部上架/下架 API。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
XingQue
2026-06-26 01:32:33 +08:00
parent deb1688d0c
commit 2f0838e552
11 changed files with 689 additions and 221 deletions

View File

@@ -2,6 +2,9 @@ from django.urls import path
from backend.view import (
AddMemberView,
ClubMemberCatalogView,
ClubMemberDisableView,
ClubMemberEnableView,
FaKuanChuLiView,
FaKuanChuangJianView,
FaKuanLieBiaoView,
@@ -96,5 +99,8 @@ urlpatterns = [
path('houtai/hthqhylb', GetMemberListView.as_view(), name='jituan_member_list'),
path('houtai/htxghyxx', UpdateMemberView.as_view(), name='jituan_member_update'),
path('houtai/httjhy', AddMemberView.as_view(), name='jituan_member_add'),
path('houtai/hthycatalog', ClubMemberCatalogView.as_view(), name='jituan_member_catalog'),
path('houtai/hthysj', ClubMemberEnableView.as_view(), name='jituan_member_enable'),
path('houtai/hthyxj', ClubMemberDisableView.as_view(), name='jituan_member_disable'),
path('club/list', ClubListView.as_view(), name='jituan_club_list'),
]