update excel warehouse

This commit is contained in:
7nimor
2025-07-31 11:34:26 +03:30
parent 3073e2b54a
commit f443c195d8
3 changed files with 100 additions and 243 deletions

View File

@@ -1,11 +1,12 @@
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 warehouse_excel
from apps.warehouse.services.excel.excel_processing import InventoryEntryExcelViewSet
router = DefaultRouter()
router.register(r'', InventoryEntryExcelViewSet, basename='inventory_entry_excel')
urlpatterns = [
path('', include(router.urls)),
path('warehouse_excel/', warehouse_excel),
# path('warehouse_excel/', warehouse_excel),
]