2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-30 08:31:34 +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
InvenTree/part/templates/part

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