Files
InventoryTraker-Box/InventoryTraker.Web/js/utility/FormatCases.js
T
2016-09-23 15:12:46 -04:00

11 lines
194 B
JavaScript

(function() {
window.app.filter('formatCases',
function() {
return function(qty) {
if (qty === '' || !isFinite(qty))
return '';
return '(' + qty + ' cs)';
}
});
})();