ДОбавил изделия и заполнение спецификции изделия
All checks were successful
Deploy MES Core / deploy (push) Successful in 3m27s

This commit is contained in:
2026-04-07 12:09:46 +03:00
parent eb708a3ab7
commit a238c83b04
16 changed files with 1722 additions and 3 deletions

View File

@@ -21,6 +21,9 @@ from .views import (
SteelGradeUpsertView,
TaskItemsView,
ClosingView,
ProductDetailView,
ProductInfoView,
ProductsView,
WriteOffsView,
WarehouseReceiptCreateView,
WarehouseStocksView,
@@ -60,4 +63,8 @@ urlpatterns = [
path('closing/', ClosingView.as_view(), name='closing'),
path('writeoffs/', WriteOffsView.as_view(), name='writeoffs'),
path('products/', ProductsView.as_view(), name='products'),
path('products/<int:pk>/', ProductDetailView.as_view(), name='product_detail'),
path('products/<int:pk>/info/', ProductInfoView.as_view(), name='product_info'),
]