Files
InventoryTracker/InventoryTraker.Web/js/utility/FormatCases.js
T
2016-09-19 11:05:22 -04:00

12 lines
213 B
JavaScript

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