HimoolERP/apps/statistic/urls.py
2021-12-26 23:24:52 +08:00

8 lines
265 B
Python

from extensions.routers import *
from apps.statistic.views import *
router = BaseRouter()
router.register('purchase_reports', PurchaseReportViewSet, 'purchase_report')
router.register('sales_reports', SalesReportViewSet, 'sales_report')
urlpatterns = router.urls