mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 12:36:45 +00:00
29 lines
670 B
Python
29 lines
670 B
Python
"""
|
|
URL lookup for the Order app. Provides URL endpoints for:
|
|
|
|
- List view of Purchase Orders
|
|
- Detail view of Purchase Orders
|
|
"""
|
|
|
|
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
purchase_order_detail_urls = [
|
|
|
|
url(r'^.*$', views.PurchaseOrderDetail.as_view(), name='purchase-order-detail'),
|
|
]
|
|
|
|
purchase_order_urls = [
|
|
|
|
# Display detail view for a single purchase order
|
|
url(r'^(?P<pk>\d+)/', include(purchase_order_detail_urls)),
|
|
|
|
# Display complete list of purchase orders
|
|
url(r'^.*$', views.PurchaseOrderIndex.as_view(), name='purchase-order-index'),
|
|
]
|
|
|
|
order_urls = [
|
|
url(r'^purchase-order/', include(purchase_order_urls)),
|
|
]
|