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

Fix existing bug with BomExport functionality - could not select BOM format

This commit is contained in:
Oliver
2022-02-05 00:12:40 +11:00
parent 611592694b
commit 707787d82c
2 changed files with 1 additions and 51 deletions

View File

@@ -33,7 +33,6 @@ part_parameter_urls = [
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'^pricing/', views.PartPricing.as_view(), name='part-pricing'),