2
0
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:
Oliver Walters 2020-02-12 08:22:55 +11:00
parent 265ed5115a
commit c287a0a0b9
2 changed files with 6 additions and 0 deletions

View File

@ -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',

View File

@ -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);
},
} }
], ],