mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-13 02:35:27 +00:00
Fix issue with non integer serial number display
This commit is contained in:
@ -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');
|
||||
|
||||
|
Reference in New Issue
Block a user