进行了完整的视图拆分,同步了 merchant_ops 的修改
This commit is contained in:
51
shop/views/__init__.py
Normal file
51
shop/views/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user