16 lines
716 B
Python
16 lines
716 B
Python
from apps.pm.views import ProductionPlanViewSet, ResourceViewSet, SubProductionPlanViewSet, SubProductionProgressViewSet
|
|
from django.db.models import base
|
|
from rest_framework import urlpatterns
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
router = DefaultRouter()
|
|
router.register('production_plan', ProductionPlanViewSet, basename='production_plan')
|
|
router.register('subproduction_plan', SubProductionPlanViewSet, basename='subproduction_plan')
|
|
router.register('subproduction_progress', SubProductionProgressViewSet, basename='subproduction_progress')
|
|
router.register('resource', ResourceViewSet, basename='resource')
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|
|
|