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

"Validate BOM" now uses the API also

This commit is contained in:
Oliver
2021-12-21 22:45:59 +11:00
parent 70f9a0fe13
commit 2c0da25cbc
8 changed files with 91 additions and 79 deletions

View File

@@ -35,7 +35,6 @@ part_detail_urls = [
url(r'^delete/?', views.PartDelete.as_view(), name='part-delete'),
url(r'^bom-export/?', views.BomExport.as_view(), name='bom-export'),
url(r'^bom-download/?', views.BomDownload.as_view(), name='bom-download'),
url(r'^validate-bom/', views.BomValidate.as_view(), name='bom-validate'),
url(r'^pricing/', views.PartPricing.as_view(), name='part-pricing'),