forked from erp-dev/erp
65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
"""
|
|
api_v2 视图包。
|
|
"""
|
|
|
|
from .healthy import HealthCheckView
|
|
from .users import QuickCreateEmployeeUserView, RoleListView
|
|
from .printing import (
|
|
PrintingJobByCustomerView,
|
|
PrintingJobV2Serializer,
|
|
PrintingJobBatchAdvancePreviewView,
|
|
PrintingJobBatchAdvanceSubmitView,
|
|
PrintingJobBatchAddParametersView,
|
|
PrintingOrderExternalSnapshotSyncView,
|
|
PlateOrderByProcessNodeView,
|
|
PlateOrderByProcessView,
|
|
PlateOrderByStateStatusView,
|
|
PlateOrderBatchUpdateView,
|
|
PrintingOrderBatchAdvanceRecordsView,
|
|
)
|
|
from .stateflow import BusinessObjectCloneView
|
|
from .mission import (
|
|
ContentTypeListView,
|
|
MissionCancelView,
|
|
MissionCategoryDetailView,
|
|
MissionCategoryListCreateView,
|
|
MissionDetailView,
|
|
MissionListCreateView,
|
|
MissionReopenView,
|
|
MissionReplyListCreateView,
|
|
MissionReplyRejectView,
|
|
MissionSetUrgentView,
|
|
)
|
|
from .ai import AgentUnshippedShipmentListView, AgentTransportVehicleListView, AgentTransportVehicleDetailView
|
|
|
|
__all__ = [
|
|
'HealthCheckView',
|
|
'QuickCreateEmployeeUserView',
|
|
'RoleListView',
|
|
'PrintingJobByCustomerView',
|
|
'PrintingJobV2Serializer',
|
|
'PrintingJobBatchAdvancePreviewView',
|
|
'PrintingJobBatchAdvanceSubmitView',
|
|
'PrintingJobBatchAddParametersView',
|
|
'PrintingOrderExternalSnapshotSyncView',
|
|
'PlateOrderByProcessNodeView',
|
|
'PlateOrderByProcessView',
|
|
'PlateOrderByStateStatusView',
|
|
'PlateOrderBatchUpdateView',
|
|
'PrintingOrderBatchAdvanceRecordsView',
|
|
'BusinessObjectCloneView',
|
|
'MissionCancelView',
|
|
'MissionCategoryDetailView',
|
|
'MissionCategoryListCreateView',
|
|
'MissionDetailView',
|
|
'MissionListCreateView',
|
|
'MissionReopenView',
|
|
'MissionReplyListCreateView',
|
|
'MissionReplyRejectView',
|
|
'MissionSetUrgentView',
|
|
'ContentTypeListView',
|
|
'AgentUnshippedShipmentListView',
|
|
'AgentTransportVehicleListView',
|
|
'AgentTransportVehicleDetailView',
|
|
]
|