forked from erp-dev/erp
feat: added plate order clone
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
from django.urls import path
|
||||
|
||||
from api_v2.views import QuickCreateEmployeeUserView, PrintingJobByCustomerView
|
||||
from api_v2.views import (
|
||||
QuickCreateEmployeeUserView,
|
||||
PrintingJobByCustomerView,
|
||||
PrintingJobBatchAdvancePreviewView,
|
||||
PrintingJobBatchAdvanceSubmitView,
|
||||
BusinessObjectCloneView,
|
||||
)
|
||||
|
||||
urlpatterns = [
|
||||
path('users/quick-create/', QuickCreateEmployeeUserView.as_view(), name='api_v2_user_quick_create'),
|
||||
path('printing-jobs/by-customer/', PrintingJobByCustomerView.as_view(), name='api_v2_printing_job_by_customer'),
|
||||
path('printing-jobs/batch-advance/preview/', PrintingJobBatchAdvancePreviewView.as_view(), name='api_v2_printing_job_batch_advance_preview'),
|
||||
path('printing-jobs/batch-advance/', PrintingJobBatchAdvanceSubmitView.as_view(), name='api_v2_printing_job_batch_advance_submit'),
|
||||
path('stateflow/business-objects/clone/', BusinessObjectCloneView.as_view(), name='api_v2_stateflow_business_object_clone'),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user