进行了完整的视图拆分,同步了 merchant_ops 的修改

This commit is contained in:
2026-07-05 10:01:09 +08:00
parent 9d98ac9e83
commit c5ae30507b
46 changed files with 32768 additions and 188172 deletions

51
shop/views/__init__.py Normal file
View File

@@ -0,0 +1,51 @@
"""shop.views package aggregate entry - re-export all submodule symbols.
Preserves external `from shop.views import X` for shop/urls.py.
"""
from .shop_base_views import (
BindDianpuView,
ShopGoodsView,
ShangdianLoginView,
ShopOverviewView,
QrcodeDownloadView,
DianpuShouzhiTongjiView,
ShopQrcodeView,
)
from .shop_product_views import (
ShopProductConfigView,
ShopProductModifyView,
ShopProductListView,
ShopProductModifyView1,
)
from .shop_member_views import (
MemberListView,
SubShopListView,
SubShopModifyView,
)
from .shop_order_views import (
ShopOrderStatisticsView,
ShopOrderManageView,
)
from .shop_refund_views import (
ShopRefundView,
ShopForceCompleteView,
ShopTransferHallView,
ShopFineApplyView,
)
__all__ = [
# shop_base_views
"BindDianpuView", "ShopGoodsView", "ShangdianLoginView",
"ShopOverviewView", "QrcodeDownloadView", "DianpuShouzhiTongjiView",
"ShopQrcodeView",
# shop_product_views
"ShopProductConfigView", "ShopProductModifyView",
"ShopProductListView", "ShopProductModifyView1",
# shop_member_views
"MemberListView", "SubShopListView", "SubShopModifyView",
# shop_order_views
"ShopOrderStatisticsView", "ShopOrderManageView",
# shop_refund_views
"ShopRefundView", "ShopForceCompleteView",
"ShopTransferHallView", "ShopFineApplyView",
]