2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-28 13:36:50 +00:00

Fix issue with non integer serial number display

This commit is contained in:
Oliver Walters 2021-01-21 00:01:59 +11:00
parent 392493e004
commit 4445973548

View File

@ -272,7 +272,7 @@ class InvenTreeStockItem extends InvenTreeModel {
return sku;
}
int get serialNumber => jsondata['serial'] as int ?? null;
String get serialNumber => jsondata['serial'] as String ?? null;
double get quantity => double.tryParse(jsondata['quantity'].toString() ?? '0');