mirror of
https://github.com/himool/HimoolERP.git
synced 2024-11-16 04:15:51 +08:00
8 lines
268 B
Python
8 lines
268 B
Python
from extensions.routers import *
|
|
from apps.stock_in.views import *
|
|
|
|
|
|
router = BaseRouter()
|
|
router.register('stock_in_orders', StockInOrderViewSet, 'stock_in_order')
|
|
router.register('stock_in_records', StockInRecordViewSet, 'stock_in_record')
|
|
urlpatterns = router.urls
|