mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-14 11:15:26 +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;
|
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');
|
double get quantity => double.tryParse(jsondata['quantity'].toString() ?? '0');
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user