mirror of
https://github.com/HendrikRauh/inventree-app.git
synced 2026-01-13 03:26:24 +00:00
bug fix
This commit is contained in:
parent
884a6850f6
commit
139b166a5e
1 changed files with 1 additions and 1 deletions
|
|
@ -104,7 +104,7 @@ class InvenTreeStockItemHistory extends InvenTreeModel {
|
|||
|
||||
// Serial number takes priority here
|
||||
if (deltas.containsKey("serial")) {
|
||||
var serial = (deltas["serial"] ?? "") as String;
|
||||
var serial = (deltas["serial"] ?? "").toString();
|
||||
return "# ${serial}";
|
||||
} else if (deltas.containsKey("quantity")) {
|
||||
double q = (deltas["quantity"] ?? 0) as double;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue