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

Exporting data from a Part table now uses the API too

- Makes use of the existing table filters
- Exported data matches exactly what you see in the table!
This commit is contained in:
Oliver
2022-03-03 17:42:31 +11:00
parent 73a32f66c8
commit 4f74a27e1a
5 changed files with 23 additions and 81 deletions

View File

@@ -80,9 +80,6 @@ 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 using pk
url(r'^(?P<pk>\d+)/', include(part_detail_urls)),