1
0
forked from erp-dev/erp

feat: bind employee to customer (v2)

This commit is contained in:
2025-12-25 20:38:17 +08:00
parent a293b1ca84
commit 147b5804d2
3 changed files with 193 additions and 0 deletions

View File

@@ -11,9 +11,11 @@ from api_v2.views import (
PlateOrderBatchUpdateView,
BusinessObjectCloneView,
)
from api_v2.views.basic_info import CustomerEmployeeBindingView
urlpatterns = [
path('users/quick-create/', QuickCreateEmployeeUserView.as_view(), name='api_v2_user_quick_create'),
path('customers/bind-employee/', CustomerEmployeeBindingView.as_view(), name='api_v2_customer_bind_employee'),
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'),