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