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

Refactored DuplicatePart form

- API endpoint now takes care of duplication of other data
This commit is contained in:
Oliver Walters
2021-08-05 00:16:42 +10:00
parent 2cb0b448b7
commit 0e8fb6a5ad
5 changed files with 43 additions and 132 deletions

View File

@@ -40,7 +40,6 @@ 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'^duplicate/', views.PartDuplicate.as_view(), name='part-duplicate'),
url(r'^make-variant/', views.MakePartVariant.as_view(), name='make-part-variant'),
url(r'^pricing/', views.PartPricing.as_view(), name='part-pricing'),