forked from erp-dev/erp
29 lines
709 B
Python
29 lines
709 B
Python
"""
|
|
api_v2 视图包。
|
|
"""
|
|
|
|
from .users import QuickCreateEmployeeUserView
|
|
from .printing import (
|
|
PrintingJobByCustomerView,
|
|
PrintingJobV2Serializer,
|
|
PrintingJobBatchAdvancePreviewView,
|
|
PrintingJobBatchAdvanceSubmitView,
|
|
PlateOrderByProcessNodeView,
|
|
PlateOrderByProcessView,
|
|
PlateOrderBatchUpdateView,
|
|
)
|
|
from .stateflow import BusinessObjectCloneView
|
|
|
|
__all__ = [
|
|
'QuickCreateEmployeeUserView',
|
|
'PrintingJobByCustomerView',
|
|
'PrintingJobV2Serializer',
|
|
'PrintingJobBatchAdvancePreviewView',
|
|
'PrintingJobBatchAdvanceSubmitView',
|
|
'PlateOrderByProcessNodeView',
|
|
'PlateOrderByProcessView',
|
|
'PlateOrderBatchUpdateView',
|
|
'BusinessObjectCloneView',
|
|
]
|
|
|