Files
RasadDam_Backend/apps/warehouse/services/excel/urls.py

13 lines
454 B
Python
Raw Normal View History

2025-07-30 15:29:29 +03:30
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from apps.warehouse.services.excel import excel_processing as excel
2025-07-31 11:34:26 +03:30
from apps.warehouse.services.excel.excel_processing import InventoryEntryExcelViewSet
2025-07-30 15:29:29 +03:30
router = DefaultRouter()
2025-07-31 11:34:26 +03:30
router.register(r'', InventoryEntryExcelViewSet, basename='inventory_entry_excel')
2025-07-30 15:29:29 +03:30
urlpatterns = [
path('', include(router.urls)),
2025-07-31 11:34:26 +03:30
# path('warehouse_excel/', warehouse_excel),
2025-07-30 15:29:29 +03:30
]