1
0
forked from erp-dev/erp

feat: salesitem can change/soft delete

This commit is contained in:
2026-04-06 14:49:02 +08:00
parent d7bc43082e
commit 9afbb73799
16 changed files with 1075 additions and 10 deletions

View File

@@ -37,6 +37,7 @@ from .views.shipment import (
SalesItemByCustomerView,
SalesItemByPrintingOrderView,
SalesItemCreateView,
ShipmentStatusUpdateView,
ShipmentDeliveryBindShipmentsView,
ShipmentDeliveryCancelView,
ShipmentDeliveryDetailView,
@@ -308,6 +309,11 @@ urlpatterns = [
ShipmentDetailView.as_view(),
name="shipment_detail",
),
path(
"shipment/shipments/<int:pk>/status/",
ShipmentStatusUpdateView.as_view(),
name="shipment_status_update",
),
path(
"shipment/shipments/external/",
ShipmentExternalCreateView.as_view(),