mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-15 20:06:43 +08:00
8 lines
265 B
Python
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
|