diff --git a/apps/product/services/excel/urls.py b/apps/product/services/excel/urls.py index 0119ddf..70dd925 100644 --- a/apps/product/services/excel/urls.py +++ b/apps/product/services/excel/urls.py @@ -9,5 +9,4 @@ router.register(r'', ProductExcelViewSet, basename='product_excel') urlpatterns = [ path('', include(router.urls)), - # path('my_distributions_excel/', my_distributions_excel), ] diff --git a/apps/warehouse/services/excel/urls.py b/apps/warehouse/services/excel/urls.py index b7ab119..314a297 100644 --- a/apps/warehouse/services/excel/urls.py +++ b/apps/warehouse/services/excel/urls.py @@ -1,6 +1,5 @@ from django.urls import path, include from rest_framework.routers import DefaultRouter -from apps.warehouse.services.excel import excel_processing as excel from apps.warehouse.services.excel.excel_processing import WareHouseExcelViewSet router = DefaultRouter() @@ -8,5 +7,4 @@ router.register(r'', WareHouseExcelViewSet, basename='warehouse_excel') urlpatterns = [ path('', include(router.urls)), - # path('warehouse_excel/', warehouse_excel), ]