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

Adds filter to purchase order for "assigned to me"

This commit is contained in:
Oliver
2021-12-04 21:15:38 +11:00
parent ab80980b5a
commit 087ac0bd34
3 changed files with 67 additions and 5 deletions

View File

@ -327,6 +327,10 @@ function getAvailableTableFilters(tableKey) {
type: 'bool',
title: '{% trans "Overdue" %}',
},
assigned_to_me: {
type: 'bool',
title: '{% trans "Assigned to me" %}',
},
};
}