fix - change transaction base from distribution to quota stat

This commit is contained in:
2025-11-26 15:28:14 +03:30
parent 7c1fb57934
commit 817f26519d
13 changed files with 568 additions and 30 deletions

View File

@@ -1,10 +1,10 @@
# Your urls go here
from django.urls import path, include
urlpatterns = [
path('web/api/', include('apps.warehouse.web.api.v1.urls')),
path('pos/api/', include('apps.warehouse.pos.api.v1.urls')),
path('pos/api/', include('apps.warehouse.pos.api.v2.urls')),
path('excel/', include('apps.warehouse.services.excel.urls')),
]