How many units are in stock doesn't really mean anything...

This commit is contained in:
Bernd Bestel 2020-01-26 21:18:09 +01:00
parent 4cc31a87e0
commit 9221d787a5
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -172,7 +172,7 @@ function RefreshStatistics()
result.forEach(element => {
amountSum += parseInt(element.amount);
});
$("#info-current-stock").text(__n(result.length, '%s Product', '%s Products') + ", " + __n(amountSum, '%s Unit', '%s Units'));
$("#info-current-stock").text(__n(result.length, '%s Product', '%s Products'));
},
function(xhr)
{