first setup of pos transaction - add provider, user, organization information of pos to login

This commit is contained in:
2025-08-26 15:24:46 +03:30
parent c0b6b8ddca
commit 65c831d6a8
7 changed files with 54 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ from . import api
router = DefaultRouter()
router.register(r'inventory_entry', api.InventoryEntryViewSet, basename='inventory_entry')
router.register(r'transaction', api.InventoryQuotaSaleTransactionViewSet, basename='transaction')
urlpatterns = [
path('v1/', include(router.urls))