1
0
forked from erp-dev/erp

feat: mes module

This commit is contained in:
2026-05-11 21:37:41 +08:00
parent d7b388e935
commit 9359013b4c
20 changed files with 3232 additions and 133 deletions

View File

@@ -31,7 +31,21 @@ from .mission import (
MissionReplyRejectView,
MissionSetUrgentView,
)
from .ai import AgentUnshippedShipmentListView, AgentTransportVehicleListView, AgentTransportVehicleDetailView
from .mes import (
DeviceCategoryDetailView,
DeviceCategoryListCreateView,
DeviceDetailView,
DeviceListCreateView,
ProductionAssignmentDetailView,
ProductionAssignmentListCreateView,
)
from .ai import (
AgentUnshippedShipmentListView,
AgentTransportVehicleListView,
AgentTransportVehicleDetailView,
AgentMesDeviceListView,
AgentMesProductionAssignmentListView,
)
from .shipment_delivery_photo import ShipmentDeliveryPhotoDetailView, ShipmentDeliveryPhotoListCreateView
__all__ = [
@@ -61,9 +75,17 @@ __all__ = [
'MissionSetUrgentView',
'ContentTypeListView',
'MissionByPrintingOrderView',
'DeviceCategoryListCreateView',
'DeviceCategoryDetailView',
'DeviceListCreateView',
'DeviceDetailView',
'ProductionAssignmentListCreateView',
'ProductionAssignmentDetailView',
'AgentUnshippedShipmentListView',
'AgentTransportVehicleListView',
'AgentTransportVehicleDetailView',
'AgentMesDeviceListView',
'AgentMesProductionAssignmentListView',
'ShipmentDeliveryPhotoListCreateView',
'ShipmentDeliveryPhotoDetailView',
]