Фильтры сохраняются, мастер получил расширенные возможности
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
from django.urls import path
|
||||
from .views import (
|
||||
CompanyUpsertView,
|
||||
CustomerDealsView,
|
||||
CustomersView,
|
||||
DealDetailView,
|
||||
DealPlanningView,
|
||||
DealUpsertView,
|
||||
@@ -15,6 +17,7 @@ from .views import (
|
||||
RegistryPrintView,
|
||||
RegistryView,
|
||||
SteelGradeUpsertView,
|
||||
TaskItemsView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
@@ -23,9 +26,12 @@ urlpatterns = [
|
||||
|
||||
# Реестр
|
||||
path('registry/', RegistryView.as_view(), name='registry'),
|
||||
# Планирование
|
||||
# Сделки
|
||||
path('planning/', PlanningView.as_view(), name='planning'),
|
||||
path('planning/deal/<int:pk>/', DealPlanningView.as_view(), name='planning_deal'),
|
||||
path('planning/task/<int:pk>/items/', TaskItemsView.as_view(), name='task_items'),
|
||||
path('customers/', CustomersView.as_view(), name='customers'),
|
||||
path('customers/<int:pk>/', CustomerDealsView.as_view(), name='customer_deals'),
|
||||
path('planning/add/', PlanningAddView.as_view(), name='planning_add'),
|
||||
path('planning/task/add/', ProductionTaskCreateView.as_view(), name='task_add'),
|
||||
path('planning/deal/<int:pk>/json/', DealDetailView.as_view(), name='deal_json'),
|
||||
|
||||
Reference in New Issue
Block a user