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

Export selected parts

- Select which parts to export in the table
- Export base information
- Include supplier part information
This commit is contained in:
Oliver Walters
2019-08-07 09:52:49 +10:00
parent 55fdcc8cf7
commit dda4569f76
5 changed files with 103 additions and 1 deletions

View File

@@ -78,6 +78,9 @@ part_urls = [
# Download a BOM upload template
url(r'^bom_template/?', views.BomUploadTemplate.as_view(), name='bom-upload-template'),
# Export data for multiple parts
url(r'^export/', views.PartExport.as_view(), name='part-export'),
# Individual part
url(r'^(?P<pk>\d+)/', include(part_detail_urls)),