2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

More API fixes

- Allow searching supplier parts by manufacturer name
- Better rendering of supplier part table

(cherry picked from commit 62199aedf5)
This commit is contained in:
Oliver Walters
2020-04-13 19:33:44 +10:00
parent f88d03db88
commit 7c892263f8
4 changed files with 39 additions and 34 deletions

View File

@ -130,7 +130,7 @@ class SupplierPartList(generics.ListCreateAPIView):
search_fields = [
'SKU',
'supplier__name',
'manufacturer_name',
'manufacturer__name',
'description',
'MPN',
]