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

Refactor MakeVariant form

- Now is essentially identical to the DuplicatePart form
- Uses the API form structure
This commit is contained in:
Oliver Walters
2021-08-05 00:24:38 +10:00
parent 0e8fb6a5ad
commit aa4ed9feb0
6 changed files with 15 additions and 182 deletions

View File

@@ -40,7 +40,7 @@ part_detail_urls = [
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'^make-variant/', views.MakePartVariant.as_view(), name='make-part-variant'),
url(r'^pricing/', views.PartPricing.as_view(), name='part-pricing'),
url(r'^bom-upload/?', views.BomUpload.as_view(), name='upload-bom'),