Display a list of companies, with filtering

This commit is contained in:
Oliver Walters 2020-04-06 23:43:29 +10:00
parent aa8a3602e8
commit d2168b2cb9
5 changed files with 126 additions and 12 deletions

View file

@ -195,13 +195,4 @@ class InvenTreeStockLocation extends InvenTreeModel {
return loc;
}
@override
bool matchAgainstString(String filter) {
if (name.toLowerCase().contains(filter)) return true;
if (description.toLowerCase().contains(filter)) return true;
return false;
}
}