You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
515 B
Python

from django.urls import path, include
from billing import views
urlpatterns = [
path('add/', include('billing.add.urls')),
# LISTING
path('items', views.items, name='items'),
path('orders', views.orders, name='orders'),
path('invoices', views.invoices, name='invoices'),
# DETAILS
path('invoice-details/<int:order_id>', views.invoice_details, name='invoicedetails'),
path('fetch-customer-items/<int:customer_id>/', views.fetch_customer_items, name='fetch_customer_items'),
]