create excel for product
This commit is contained in:
13
apps/product/services/excel/urls.py
Normal file
13
apps/product/services/excel/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.urls import path, include
|
||||
from rest_framework.routers import DefaultRouter
|
||||
|
||||
from apps.product.services.excel.excel_processing import QuotaDistributionExcelViewSet
|
||||
|
||||
router = DefaultRouter()
|
||||
router.register(r'', QuotaDistributionExcelViewSet, basename='quota_distribution_excel')
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('', include(router.urls)),
|
||||
# path('my_distributions_excel/', my_distributions_excel),
|
||||
]
|
||||
Reference in New Issue
Block a user