2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-17 04:35:26 +00:00

Display subcategory part count

This commit is contained in:
Oliver Walters
2020-04-05 21:41:13 +10:00
parent 57ab6546ab
commit f32c9f024e
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,8 @@ class InvenTreePartCategory extends InvenTreeModel {
String get pathstring => jsondata['pathstring'] ?? '';
int get partcount => jsondata['parts'] ?? 0;
InvenTreePartCategory() : super();
InvenTreePartCategory.fromJson(Map<String, dynamic> json) : super.fromJson(json) {