2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-17 17:11:09 +00:00

ajax implementation for part import

This commit is contained in:
2021-05-26 13:05:20 +02:00
parent 421b0a896d
commit 79374c5dfd
6 changed files with 220 additions and 2 deletions

View File

@@ -122,6 +122,7 @@ part_urls = [
# Upload a part
url(r'^import/', views.PartImport.as_view(), name='part-import'),
url(r'^import-api/', views.PartImportAjax.as_view(), name='api-part-import'),
# Create a new BOM item
url(r'^bom/new/?', views.BomItemCreate.as_view(), name='bom-item-create'),