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

Merge branch 'master' of https://github.com/inventree/InvenTree into one-pricing-view

This commit is contained in:
2021-06-27 14:40:17 +02:00
55 changed files with 10732 additions and 8186 deletions

View File

@@ -126,6 +126,10 @@ part_urls = [
# Create a new part
url(r'^new/?', views.PartCreate.as_view(), name='part-create'),
# 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'),