2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 05:25:42 +00:00

Add an option to configure number of parts displayed in search preview box

This commit is contained in:
Oliver
2021-07-21 15:05:14 +10:00
parent 15b3055e53
commit 2ffae368f1
5 changed files with 25 additions and 3 deletions

View File

@ -277,6 +277,13 @@ class InvenTreeSetting(models.Model):
'validator': bool,
},
'SEARCH_PREVIEW_RESULTS': {
'name': _('Search Preview Results'),
'description': _('Number of results to show in search preview window'),
'default': 10,
'validator': [int, MinValueValidator(1)]
},
'STOCK_ENABLE_EXPIRY': {
'name': _('Stock Expiry'),
'description': _('Enable stock expiry functionality'),