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

@ -10,6 +10,8 @@ class InvenTreeCompany extends InvenTreeModel {
InvenTreeCompany() : super();
String get image => jsondata['image'] ?? '';
InvenTreeCompany.fromJson(Map<String, dynamic> json) : super.fromJson(json) {
// TODO
}