14 lines
716 B
Python
14 lines
716 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'reports'
|
|
urlpatterns = [
|
|
path('', views.reports_dashboard, name='dashboard'),
|
|
path('inventory/', views.inventory_report_view, name='inventory_report'),
|
|
path('sales/', views.sales_report_view, name='sales_report'),
|
|
path('purchasing/', views.purchasing_report_view, name='purchasing_report'),
|
|
path('manufacturing/', views.manufacturing_report_view, name='manufacturing_report'),
|
|
path('financial/', views.financial_report_view, name='financial_report'),
|
|
path('<int:report_id>/export/excel/', views.export_to_excel_view, name='export_excel'),
|
|
path('<int:report_id>/export/pdf/', views.export_to_pdf_view, name='export_pdf'),
|
|
] |