1
0
forked from erp-dev/erp

feat: query api for stock_change_detail

This commit is contained in:
2025-11-25 18:08:42 +08:00
parent 9b8f6dd57c
commit 6bf0465d05
5 changed files with 434 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ urlpatterns = [
# 库存变动相关API
path('stock-snapshots/', StockSnapshotListView.as_view(), name='list_stock_snapshots'),
path('stock-changes/', stock_change_views.list_stock_changes, name='list_stock_changes'),
path('stock-change-details/', stock_change_views.list_stock_change_details, name='list_stock_change_details'),
path('stock-change/', stock_change_views.create_full_stock_change, name='create_full_stock_change'),
path('stock-change/relaxed/', stock_change_views.create_relaxed_stock_change, name='create_relaxed_stock_change'),
path('stock-change/restrict/', stock_change_views.create_restrict_stock_change, name='create_restrict_stock_change'),