mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
More rounding improvements
This commit is contained in:
parent
265ed5115a
commit
c287a0a0b9
@ -39,6 +39,9 @@
|
||||
{
|
||||
title: 'Allocated',
|
||||
sortable: false,
|
||||
formatter: function(value, row, index, field) {
|
||||
return parseFloat(value);
|
||||
},
|
||||
},
|
||||
{
|
||||
title: 'Status',
|
||||
|
@ -53,6 +53,9 @@
|
||||
sortable: true,
|
||||
field: 'quantity',
|
||||
title: 'Uses',
|
||||
formatter: function(value, row, index, field) {
|
||||
return parseFloat(value);
|
||||
},
|
||||
}
|
||||
|
||||
],
|
||||
|
Loading…
Reference in New Issue
Block a user