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

Set part category for multiple parts at once

This commit is contained in:
Oliver Walters
2019-06-25 19:15:39 +10:00
parent ea44f28bc7
commit d6fcf85cd2
7 changed files with 181 additions and 2 deletions

View File

@@ -82,6 +82,9 @@ part_urls = [
# Part attachments
url(r'^attachment/', include(part_attachment_urls)),
# Change category for multiple parts
url(r'^set-category/?', views.PartSetCategory.as_view(), name='part-set-category'),
# Bom Items
url(r'^bom/(?P<pk>\d+)/', include(part_bom_urls)),