Фильтры сохраняются, мастер получил расширенные возможности
All checks were successful
Deploy MES Core / deploy (push) Successful in 10s

This commit is contained in:
2026-04-01 01:04:46 +03:00
parent c2778d9ec8
commit d0289f6aec
14 changed files with 865 additions and 34 deletions

View File

@@ -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'),