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