Inventory-Management-System/transaction/urls.py
2023-11-19 13:38:49 +07:00

10 lines
344 B
Python

from django.urls import path
from transaction.views import CustomerOrderView, TransferListView, SupplyListView
urlpatterns = [
path('order/', CustomerOrderView.as_view(), name='customer-order'),
path('transfers/', TransferListView.as_view(), name='transfer-list'),
path('supply/', SupplyListView.as_view(), name='supply-list'),
]